Changeset 14431
- Timestamp:
- 05/10/08 14:45:10 (2 months ago)
- Files:
-
- trunk/gdal/ogr/ogr_srs_panorama.cpp (modified) (2 diffs)
- trunk/gdal/ogr/ogr_srs_usgs.cpp (modified) (3 diffs)
- trunk/gdal/ogr/ogrlinestring.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal/ogr/ogr_srs_panorama.cpp
r13859 r14431 560 560 "Failed to lookup ellipsoid code %d, likely due to" 561 561 " missing GDAL gcs.csv\n" 562 " file. Falling back to use WGS84.", iEllips );562 " file. Falling back to use WGS84.", (int) iEllips ); 563 563 SetWellKnownGeogCS( "WGS84" ); 564 564 } … … 573 573 "Wrong datum code %d. Supported datums are 1--%d only.\n" 574 574 "Setting WGS84 as a fallback.", 575 iDatum, NUMBER_OF_DATUMS - 1 );575 (int) iDatum, NUMBER_OF_DATUMS - 1 ); 576 576 SetWellKnownGeogCS( "WGS84" ); 577 577 } trunk/gdal/ogr/ogr_srs_usgs.cpp
r13859 r14431 593 593 CPLError( CE_Warning, CPLE_AppDefined, 594 594 "Wrong datum for State Plane projection %d. " 595 "Should be 0 or 8.", iDatum );595 "Should be 0 or 8.", (int) iDatum ); 596 596 597 597 SetStatePlane( iZone, bNAD83 ); … … 866 866 "Failed to lookup datum code %d, likely due to missing GDAL gcs.csv\n" 867 867 " file. Falling back to use WGS84.", 868 iDatum );868 (int) iDatum ); 869 869 SetWellKnownGeogCS("WGS84" ); 870 870 } … … 875 875 "Wrong datum code %d. Supported datums 0--%d only.\n" 876 876 "Setting WGS84 as a fallback.", 877 iDatum, NUMBER_OF_ELLIPSOIDS );877 (int) iDatum, NUMBER_OF_ELLIPSOIDS ); 878 878 SetWellKnownGeogCS( "WGS84" ); 879 879 } trunk/gdal/ogr/ogrlinestring.cpp
r14336 r14431 1001 1001 "nMaxString=%d, strlen(*ppszDstText) = %d, i=%d\n" 1002 1002 "*ppszDstText = %s", 1003 nMaxString, strlen(*ppszDstText), i, *ppszDstText );1003 nMaxString, (int) strlen(*ppszDstText), i, *ppszDstText ); 1004 1004 1005 1005 VSIFree( *ppszDstText );
