Opened 19 years ago

Last modified 19 years ago

#691 closed defect (fixed)

Minor typo in printf for gdalwarp

Reported by: tylermitchell@… Owned by: warmerdam
Priority: lowest Milestone:
Component: GDAL_Raster Version: unspecified
Severity: trivial Keywords:
Cc:

Description

Here is the diff.  "that" and "is" were mixed up.  No biggie, but just 
happened to notice :) 
 
-------------------- 
 
*** gdal/apps/gdalwarp.cpp      2004-11-28 21:44:00.579921368 -0800 
--- gdal/apps/gdalwarp.cpp.orig 2004-11-28 21:43:48.554749472 -0800 
*************** 
*** 831,837 **** 
  /*      Create the output file.                                         */ 
  /* -------------------------------------------------------------------- */ 
      if( !bQuiet ) 
!         printf( "Creating output file that is %dP x %dL.\n", nPixels, 
nLines ); 
 
      hDstDS = GDALCreate( hDriver, pszFilename, nPixels, nLines, 
                           nDstBandCount, eDT, papszCreateOptions ); 
--- 831,837 ---- 
  /*      Create the output file.                                         */ 
  /* -------------------------------------------------------------------- */ 
      if( !bQuiet ) 
!         printf( "Creating output file is that %dP x %dL.\n", nPixels, 
nLines ); 
 
      hDstDS = GDALCreate( hDriver, pszFilename, nPixels, nLines, 
                           nDstBandCount, eDT, papszCreateOptions );

Change History (1)

comment:1 by warmerdam, 19 years ago

Tyler,

Patch applied. 

Thanks!

Note: See TracTickets for help on using tickets.