diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-05-07 21:43:22 +0200 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-05-07 21:43:22 +0200 |
| commit | ae1ed6641210c3d7bf570688d11b28c6460e4e9c (patch) | |
| tree | 6e37d6e330cc59c8d81ad80091f8d990b9e03ee1 /src/geodesic.c | |
| parent | a4a1cebe729c6eb3843b3a646d8e5f1cbb50920e (diff) | |
| download | PROJ-ae1ed6641210c3d7bf570688d11b28c6460e4e9c.tar.gz PROJ-ae1ed6641210c3d7bf570688d11b28c6460e4e9c.zip | |
Clean readability-inconsistent-declaration-parameter-name clang-tidy warnings
Diffstat (limited to 'src/geodesic.c')
| -rw-r--r-- | src/geodesic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/geodesic.c b/src/geodesic.c index 9904c7fa..3fcfd1c9 100644 --- a/src/geodesic.c +++ b/src/geodesic.c @@ -331,7 +331,7 @@ static real Lambda12(const struct geod_geodesic* g, real* pssig1, real* pcsig1, real* pssig2, real* pcsig2, real* peps, - real* pgomg12, + real* pdomg12, boolx diffp, real* pdlam12, /* Scratch area of the right size */ real Ca[]); @@ -481,10 +481,10 @@ void geod_lineinit(struct geod_geodesicline* l, void geod_gendirectline(struct geod_geodesicline* l, const struct geod_geodesic* g, real lat1, real lon1, real azi1, - unsigned flags, real a12_s12, + unsigned flags, real s12_a12, unsigned caps) { geod_lineinit(l, g, lat1, lon1, azi1, caps); - geod_gensetdistance(l, flags, a12_s12); + geod_gensetdistance(l, flags, s12_a12); } void geod_directline(struct geod_geodesicline* l, |
