aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsisyphus <sisyphus1@optusnet.com.au>2015-09-11 00:19:53 +1000
committersisyphus <sisyphus1@optusnet.com.au>2015-09-11 00:19:53 +1000
commit9ccc33c3db89d95cdaa60a5977d2c90d4999c124 (patch)
treece5ae6a34205a065de7d307797c0c1bcdf74276e /src
parentcfc9fd601d65e8acc5153ae053a7fb04a8a800df (diff)
downloadPROJ-9ccc33c3db89d95cdaa60a5977d2c90d4999c124.tar.gz
PROJ-9ccc33c3db89d95cdaa60a5977d2c90d4999c124.zip
win32 PVALUE issue
Diffstat (limited to 'src')
-rw-r--r--src/pj_param.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pj_param.c b/src/pj_param.c
index ed6ce27c..434d4535 100644
--- a/src/pj_param.c
+++ b/src/pj_param.c
@@ -23,22 +23,22 @@ pj_mkparam(char *str) {
/* character in `opt' is a parameter type which can take the */
/* values: */
/* */
-/* `t' - test for presence, return TRUE/FALSE in PVALUE.i */
-/* `i' - integer value returned in PVALUE.i */
-/* `d' - simple valued real input returned in PVALUE.f */
+/* `t' - test for presence, return TRUE/FALSE in PROJVALUE.i */
+/* `i' - integer value returned in PROJVALUE.i */
+/* `d' - simple valued real input returned in PROJVALUE.f */
/* `r' - degrees (DMS translation applied), returned as */
-/* radians in PVALUE.f */
-/* `s' - string returned in PVALUE.s */
-/* `b' - test for t/T/f/F, return in PVALUE.i */
+/* radians in PROJVALUE.f */
+/* `s' - string returned in PROJVALUE.s */
+/* `b' - test for t/T/f/F, return in PROJVALUE.i */
/* */
/************************************************************************/
- PVALUE /* test for presence or get parameter value */
+ PROJVALUE /* test for presence or get parameter value */
pj_param(projCtx ctx, paralist *pl, const char *opt) {
int type;
unsigned l;
- PVALUE value;
+ PROJVALUE value;
if( ctx == NULL )
ctx = pj_get_default_ctx();