aboutsummaryrefslogtreecommitdiff
path: root/src/pj_phi2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pj_phi2.c')
-rw-r--r--src/pj_phi2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pj_phi2.c b/src/pj_phi2.c
index 0900350e..5c81da48 100644
--- a/src/pj_phi2.c
+++ b/src/pj_phi2.c
@@ -6,7 +6,7 @@
#define N_ITER 15
double
-pj_phi2(double ts, double e) {
+pj_phi2(projCtx ctx, double ts, double e) {
double eccnth, Phi, con, dphi;
int i;
@@ -20,6 +20,6 @@ pj_phi2(double ts, double e) {
Phi += dphi;
} while ( fabs(dphi) > TOL && --i);
if (i <= 0)
- pj_errno = -18;
+ pj_ctx_set_errno( ctx, -18 );
return Phi;
}