[mapserver-commits] r9800 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Thu Feb 18 00:21:47 EST 2010
Author: sdlime
Date: 2010-02-18 00:21:47 -0500 (Thu, 18 Feb 2010)
New Revision: 9800
Modified:
trunk/mapserver/mapstring.c
Log:
Changed a couple of TRUE/FALSE references to use MS_TRUE/MS_FALSE instead in msStringSplitComplex().
Modified: trunk/mapserver/mapstring.c
===================================================================
--- trunk/mapserver/mapstring.c 2010-02-17 21:53:03 UTC (rev 9799)
+++ trunk/mapserver/mapstring.c 2010-02-18 05:21:47 UTC (rev 9800)
@@ -794,8 +794,8 @@
while( pszString != NULL && *pszString != '\0' )
{
- int bInString = FALSE;
- int bStartString = TRUE;
+ int bInString = MS_FALSE;
+ int bStartString = MS_TRUE;
nTokenLen = 0;
@@ -823,12 +823,12 @@
if( bInString )
{
- bInString = FALSE;
+ bInString = MS_FALSE;
continue;
}
else
{
- bInString = TRUE;
+ bInString = MS_TRUE;
continue;
}
}
@@ -859,7 +859,7 @@
&& bStartString && isspace((unsigned char)*pszString) )
continue;
- bStartString = FALSE;
+ bStartString = MS_FALSE;
/*
* Extend token buffer if we are running close to its end.
More information about the mapserver-commits
mailing list