Changeset 14430
- Timestamp:
- 05/10/08 14:42:32 (2 months ago)
- Files:
-
- trunk/gdal/ogr/ogrsf_frmts/geoconcept/geoconcept.c (modified) (1 diff)
- trunk/gdal/ogr/ogrsf_frmts/mysql/ogrmysqltablelayer.cpp (modified) (1 diff)
- trunk/gdal/ogr/ogrsf_frmts/shape/ogrshapelayer.cpp (modified) (2 diffs)
- trunk/gdal/ogr/ogrsf_frmts/tiger/tigerfilebase.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal/ogr/ogrsf_frmts/geoconcept/geoconcept.c
r13907 r14430 4773 4773 /* long integer which GeoConcept may use as a key for the object it will create. */ 4774 4774 /* If set to '-1', it will be ignored. */ 4775 if( VSIFPrintf(h,"%s% d%s", quotes, id, quotes)<=0 )4775 if( VSIFPrintf(h,"%s%ld%s", quotes, id, quotes)<=0 ) 4776 4776 { 4777 4777 CPLError( CE_Failure, CPLE_AppDefined, "Write failed.\n"); trunk/gdal/ogr/ogrsf_frmts/mysql/ogrmysqltablelayer.cpp
r14272 r14430 631 631 { 632 632 CPLError( CE_Failure, CPLE_AppDefined, 633 "DeleteFeature(% d) failed. Unable to delete features "633 "DeleteFeature(%ld) failed. Unable to delete features " 634 634 "in tables without\n a recognised FID column.", 635 635 nFID ); trunk/gdal/ogr/ogrsf_frmts/shape/ogrshapelayer.cpp
r14330 r14430 394 394 { 395 395 CPLError( CE_Failure, CPLE_AppDefined, 396 "Attempt to delete shape with feature id (% d) which does "396 "Attempt to delete shape with feature id (%ld) which does " 397 397 "not exist.", nFID ); 398 398 return OGRERR_FAILURE; … … 411 411 { 412 412 CPLError( CE_Failure, CPLE_AppDefined, 413 "Attempt to delete shape with feature id (% d), but it is marked deleted already.",413 "Attempt to delete shape with feature id (%ld), but it is marked deleted already.", 414 414 nFID ); 415 415 return OGRERR_FAILURE; trunk/gdal/ogr/ogrsf_frmts/tiger/tigerfilebase.cpp
r10645 r14430 224 224 "TigerFileBase::EstablishFeatureCount(): " 225 225 "File length %d doesn't divide by record length %d.\n", 226 nFileSize,nRecordLength );226 (int) nFileSize, (int) nRecordLength ); 227 227 } 228 228
