aboutsummaryrefslogtreecommitdiff
path: root/src/PJ_misrsom.c
diff options
context:
space:
mode:
authorThomas Knudsen <lastname DOT firstname AT gmail DOT com>2016-05-11 08:58:28 +0200
committerThomas Knudsen <lastname DOT firstname AT gmail DOT com>2016-05-11 08:58:28 +0200
commitf58ba586ebf11700317513f7bb5be84590d37a42 (patch)
tree0961d66f6cc07f262ea45e23d55efcd4c90c25c2 /src/PJ_misrsom.c
parente8ed8e58e8f557fc6f9443a00af1e73a5956c759 (diff)
downloadPROJ-f58ba586ebf11700317513f7bb5be84590d37a42.tar.gz
PROJ-f58ba586ebf11700317513f7bb5be84590d37a42.zip
Portability cleanups for the code in PR #6 (and a few additional source files)
Eliminated mixed code and declarations, converted C++ style comments and probably did a few more things highlighted by running gcc with the "-W -Wall -Wextra -pedantic" flags
Diffstat (limited to 'src/PJ_misrsom.c')
-rw-r--r--src/PJ_misrsom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PJ_misrsom.c b/src/PJ_misrsom.c
index fdafbd7c..c164b1c7 100644
--- a/src/PJ_misrsom.c
+++ b/src/PJ_misrsom.c
@@ -175,14 +175,14 @@ static void freeup (PJ *P) {
PJ *PROJECTION(misrsom) {
+ int path;
+ double lam, alf, esc, ess;
+
struct pj_opaque *Q = pj_calloc (1, sizeof (struct pj_opaque));
if (0==Q)
return freeup_new (P);
P->opaque = Q;
- int path;
- double lam, alf, esc, ess;
-
path = pj_param(P->ctx, P->params, "ipath").i;
if (path <= 0 || path > 233) E_ERROR(-29);
P->lam0 = DEG_TO_RAD * 129.3056 - TWOPI / 233. * path;