aboutsummaryrefslogtreecommitdiff
path: root/src/proj_rouss.c
diff options
context:
space:
mode:
authorThomas Knudsen <lastname DOT firstname AT gmail DOT com>2016-05-11 13:32:50 +0200
committerThomas Knudsen <lastname DOT firstname AT gmail DOT com>2016-05-11 13:32:50 +0200
commitcb0f8f624f2ce61c7b801daf5ffe20c01b4d3783 (patch)
tree6d0cee62e66bbd6d92795a7ed6b98e0ec1ecc609 /src/proj_rouss.c
parent8da93d5e308483ad279edda9e3783b8e0e2f3f50 (diff)
downloadPROJ-cb0f8f624f2ce61c7b801daf5ffe20c01b4d3783.tar.gz
PROJ-cb0f8f624f2ce61c7b801daf5ffe20c01b4d3783.zip
Yet another round of minor corrections
A few args had gone missing in the test setups for lagrng, ob_tran, omerc, mod_ster. A mixed declarations and code case corrected in proj_rouss A missing include added to test228.c
Diffstat (limited to 'src/proj_rouss.c')
-rw-r--r--src/proj_rouss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proj_rouss.c b/src/proj_rouss.c
index 35cc73c7..fc9918be 100644
--- a/src/proj_rouss.c
+++ b/src/proj_rouss.c
@@ -97,13 +97,13 @@ static void freeup (PJ *P) {
PJ *PROJECTION(rouss) {
+ double N0, es2, t, t2, R_R0_2, R_R0_4;
+
struct pj_opaque *Q = pj_calloc (1, sizeof (struct pj_opaque));
if (0==Q)
return freeup_new (P);
P->opaque = Q;
- double N0, es2, t, t2, R_R0_2, R_R0_4;
-
if (!((Q->en = proj_mdist_ini(P->es))))
E_ERROR_0;
es2 = sin(P->phi0);