diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-03-11 19:29:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-11 19:29:01 +0100 |
| commit | e91a6cd24a370b61c3b5f3c8fabc469439e94377 (patch) | |
| tree | 631c1e04cc5490d1006f2efcf95bfd0620241ef1 /src/proj_4D_api.c | |
| parent | ad32b8147fd5092fc5f439feabf644562ea533c0 (diff) | |
| parent | 18d5c0310e5950b88b4a5ddab6c3636e8b10ed77 (diff) | |
| download | PROJ-e91a6cd24a370b61c3b5f3c8fabc469439e94377.tar.gz PROJ-e91a6cd24a370b61c3b5f3c8fabc469439e94377.zip | |
Merge pull request #852 from kbevers/remove-pj_-prefix-from-static-functions
Remove 'pj_' prefix from static functions
Diffstat (limited to 'src/proj_4D_api.c')
| -rw-r--r-- | src/proj_4D_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proj_4D_api.c b/src/proj_4D_api.c index d9fa8c28..f96dd67d 100644 --- a/src/proj_4D_api.c +++ b/src/proj_4D_api.c @@ -409,7 +409,7 @@ in cs2cs compatibility mode. } /*************************************************************************************/ -static int pj_cs2cs_emulation_setup (PJ *P) { +static int cs2cs_emulation_setup (PJ *P) { /************************************************************************************** If any cs2cs style modifiers are given (axis=..., towgs84=..., ) create the 4D API equivalent operations, so the preparation and finalization steps in the pj_inv/pj_fwd @@ -564,7 +564,7 @@ PJ *proj_create (PJ_CONTEXT *ctx, const char *definition) { pj_dealloc (args); /* Support cs2cs-style modifiers */ - ret = pj_cs2cs_emulation_setup (P); + ret = cs2cs_emulation_setup (P); if (0==ret) return proj_destroy (P); |
