Changeset 14391
- Timestamp:
- 05/07/08 16:18:08 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.5/gdal/ogr/ogrsf_frmts/oci/ogrocistatement.cpp
r10645 r14391 325 325 326 326 if( oField.GetWidth() > 0 ) 327 nBufWidth = oField.GetWidth() + 2; 327 /* extra space needed for the decimal separator the string 328 terminator and the negative sign see Bug #2350 (Tamas Szekeres)*/ 329 nBufWidth = oField.GetWidth() + 3; 328 330 else if( oField.GetType() == OFTInteger ) 329 331 nBufWidth = 22;
