diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/PJ_eqdc.c | 4 | ||||
| -rw-r--r-- | src/PJ_lcc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/PJ_eqdc.c b/src/PJ_eqdc.c index 08981249..a7308335 100644 --- a/src/PJ_eqdc.c +++ b/src/PJ_eqdc.c @@ -52,7 +52,7 @@ static LP e_inverse (XY xy, PJ *P) { /* Ellipsoidal, inverse */ } -SPECIAL(fac) { +static void special(LP lp, PJ *P, struct FACTORS *fac) { struct pj_opaque *Q = P->opaque; double sinphi, cosphi; @@ -124,7 +124,7 @@ PJ *PROJECTION(eqdc) { } P->inv = e_inverse; P->fwd = e_forward; - P->spc = fac; + P->spc = special; return P; } diff --git a/src/PJ_lcc.c b/src/PJ_lcc.c index 3a5d3485..28275089 100644 --- a/src/PJ_lcc.c +++ b/src/PJ_lcc.c @@ -65,7 +65,7 @@ static LP e_inverse (XY xy, PJ *P) { /* Ellipsoidal, inverse */ return lp; } -SPECIAL(fac) { +static void special(LP lp, PJ *P, struct FACTORS *fac) { struct pj_opaque *Q = P->opaque; double rho; if (fabs(fabs(lp.phi) - HALFPI) < EPS10) { @@ -144,7 +144,7 @@ PJ *PROJECTION(lcc) { P->inv = e_inverse; P->fwd = e_forward; - P->spc = fac; + P->spc = special; return P; } |
