diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2013-06-25 07:54:36 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2013-06-25 07:54:36 +0000 |
| commit | c0156ce5294e246cb05b72385ab90c3b73bef789 (patch) | |
| tree | ded531b3e39b91fb4ae65a1aadebf4d999cbcc9c /src | |
| parent | ddf0a021559b9dec913953701373ff5c8f69794f (diff) | |
| download | PROJ-c0156ce5294e246cb05b72385ab90c3b73bef789.tar.gz PROJ-c0156ce5294e246cb05b72385ab90c3b73bef789.zip | |
fix variable declaration order to be C (and msvc) legal
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@2362 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src')
| -rw-r--r-- | src/PJ_healpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PJ_healpix.c b/src/PJ_healpix.c index 3e343a99..359c9995 100644 --- a/src/PJ_healpix.c +++ b/src/PJ_healpix.c @@ -579,9 +579,9 @@ static XY combine_caps(double x, double y, double R, int npole, int spole, int i } } FORWARD(e_healpix_forward); /* ellipsoidal */ - (void) xy; //int r1[][2] = R1; double bet = auth_lat(lp.phi, P->e, 0); + (void) xy; lp.phi = bet; P->a = P->ra; return healpix_sphere(lp,P); |
