Skip to content

Commit

Permalink
Fix warning about strcasestr being undeclared; remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jul 9, 2013
1 parent c40478b commit 791ca40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mapgdal.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
* DEALINGS IN THE SOFTWARE.
****************************************************************************/

#include <assert.h>
#include "mapserver.h"
#include "mapthread.h"
#include <assert.h>



Expand Down Expand Up @@ -628,7 +628,7 @@ char *msProjectionObj2OGCWKT( projectionObj *projection )

OGRSpatialReferenceH hSRS;
char *pszWKT=NULL, *pszProj4, *pszInitEpsg=NULL;
int nLength = 0, i, nEpsgCode=-1;
int nLength = 0, i;
OGRErr eErr;

if( projection->proj == NULL )
Expand Down

0 comments on commit 791ca40

Please sign in to comment.