IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 29, 2006, 11:39:44 AM (20 years ago)
Author:
jhoblitt
Message:

fix a wide range of format string errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmReadoutCombine.c

    r8246 r8669  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2006-08-09 02:37:07 $
     7 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2006-08-29 21:39:44 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    136136
    137137        if (!readout || !readout->image) {
    138             psError(PS_ERR_UNEXPECTED_NULL, true, "Input readout %d is NULL or has NULL image.\n", i);
     138            psError(PS_ERR_UNEXPECTED_NULL, true, "Input readout %ld is NULL or has NULL image.\n", i);
    139139            return false;
    140140        }
     
    151151        if (readout->weight) {
    152152            if (valid && !haveWeights) {
    153                 psLogMsg(__func__, PS_LOG_WARN, "Readout %d has a weight map, but others don't --- "
     153                psLogMsg(__func__, PS_LOG_WARN, "Readout %ld has a weight map, but others don't --- "
    154154                         "weights ignored.\n", i);
    155155            } else {
     
    157157            }
    158158        } else if (haveWeights) {
    159             psLogMsg(__func__, PS_LOG_WARN, "Readout %d doesn't have a weight map, but others do --- "
     159            psLogMsg(__func__, PS_LOG_WARN, "Readout %ld doesn't have a weight map, but others do --- "
    160160                     "weights ignored.\n", i);
    161161            haveWeights = false;
     
    168168        minInputCols = PS_MIN(minInputCols, readout->col0);
    169169        maxInputCols = PS_MAX(maxInputCols, readout->col0 + readout->image->numCols);
    170         psTrace("psModules.imcombine", 7, "Readout %d: offset %d,%d; size %dx%d\n", i,
     170        psTrace("psModules.imcombine", 7, "Readout %ld: offset %d,%d; size %dx%d\n", i,
    171171                readout->col0, readout->row0, readout->image->numCols, readout->image->numRows);
    172172    }
Note: See TracChangeset for help on using the changeset viewer.