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/camera/pmFPACopy.c

    r8246 r8669  
    289289    psArray *sourceCells = source->cells; // The source cells
    290290    if (targetCells->n != sourceCells->n) {
    291         psError(PS_ERR_IO, true, "Number of source cells (%d) differs from the number of target cells (%d)\n",
     291        psError(PS_ERR_IO, true, "Number of source cells (%ld) differs from the number of target cells (%ld)\n",
    292292                sourceCells->n, targetCells->n);
    293293        return false;
     
    326326    psArray *sourceChips = source->chips; // The source chips
    327327    if (targetChips->n != sourceChips->n) {
    328         psError(PS_ERR_IO, true, "Number of source chips (%d) differs from the number of target chips (%d)\n",
     328        psError(PS_ERR_IO, true, "Number of source chips (%ld) differs from the number of target chips (%ld)\n",
    329329                sourceChips->n, targetChips->n);
    330330        return false;
Note: See TracChangeset for help on using the changeset viewer.