aboutsummaryrefslogtreecommitdiff
path: root/src/proj_4D_api.c
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-03-11 15:28:28 +0100
committerKristian Evers <kristianevers@gmail.com>2018-03-11 15:28:28 +0100
commit18d5c0310e5950b88b4a5ddab6c3636e8b10ed77 (patch)
treebfb3582096fabb1bc40929b02990c7f7f450ad20 /src/proj_4D_api.c
parentab87b8ef0af7ef888b7d810db610ead6eb784d71 (diff)
downloadPROJ-18d5c0310e5950b88b4a5ddab6c3636e8b10ed77.tar.gz
PROJ-18d5c0310e5950b88b4a5ddab6c3636e8b10ed77.zip
Remove 'pj_' prefix from static functions
Functions should only be prefixed with 'pj_' when they can be used in other parts of the code base and not just within a single file. Takes care of the last step in #675.
Diffstat (limited to 'src/proj_4D_api.c')
-rw-r--r--src/proj_4D_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proj_4D_api.c b/src/proj_4D_api.c
index b9f3d9bf..ceb5bc34 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);