aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrank Warmerdam <warmerdam@pobox.com>2013-06-25 07:54:36 +0000
committerFrank Warmerdam <warmerdam@pobox.com>2013-06-25 07:54:36 +0000
commitc0156ce5294e246cb05b72385ab90c3b73bef789 (patch)
treeded531b3e39b91fb4ae65a1aadebf4d999cbcc9c /src
parentddf0a021559b9dec913953701373ff5c8f69794f (diff)
downloadPROJ-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.c2
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);