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/pmImageCombine.c

    r8246 r8669  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-08-09 02:37:07 $
     10 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-08-29 21:39:44 $
    1212 *
    1313 *  XXX: pmRejectPixels() has a known bug with the pmImageTransform() call.
     
    5050    PS_ASSERT_PTR_NON_NULL(images, combine);
    5151    psU32 numImages = images->n;
    52     psTrace("psModules.imcombine", 3, "Calling pmCombineImages(%d)\n", images->n);
     52    psTrace("psModules.imcombine", 3, "Calling pmCombineImages(%ld)\n", images->n);
    5353
    5454    if (errors != NULL) {
    5555        if (images->n != errors->n) {
    56             psError(PS_ERR_UNKNOWN, true, "images and errors args must have same length (%d != %d)\n",
     56            psError(PS_ERR_UNKNOWN, true, "images and errors args must have same length (%ld != %ld)\n",
    5757                    images->n, errors->n);
    5858            return(combine);
     
    6161    if (masks != NULL) {
    6262        if (images->n != masks->n) {
    63             psError(PS_ERR_UNKNOWN, true, "images and masks args must have same length (%d != %d)\n",
     63            psError(PS_ERR_UNKNOWN, true, "images and masks args must have same length (%ld != %ld)\n",
    6464                    images->n, masks->n);
    6565            return(combine);
     
    297297    psFree(qpPtr);
    298298
    299     psTrace("psModules.imcombine", 3, "Exiting pmCombineImages(%d)\n", images->n);
     299    psTrace("psModules.imcombine", 3, "Exiting pmCombineImages(%ld)\n", images->n);
    300300    return(combine);
    301301}
Note: See TracChangeset for help on using the changeset viewer.