From 927540c8b163f0a505338be5f488bd255dda4d28 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 8 Jan 2003 16:29:04 +0000 Subject: [PATCH] One more Irix tweak. --- src/Prep/ShapeFile/noaa-decode.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Prep/ShapeFile/noaa-decode.cxx b/src/Prep/ShapeFile/noaa-decode.cxx index 88f834a2..b19239b5 100644 --- a/src/Prep/ShapeFile/noaa-decode.cxx +++ b/src/Prep/ShapeFile/noaa-decode.cxx @@ -315,7 +315,7 @@ int main( int argc, char **argv ) { string shapetype = SHPTypeName( nShapeType ); - if ( shapetype != "Polygon" ) { + if ( shapetype != string("Polygon") ) { SG_LOG( SG_GENERAL, SG_ALERT, "Can't handle non-polygon shape files" ); exit(-1); }