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

    r7727 r8669  
    218218    }
    219219    if (view->chip >= in->chips->n) {
    220         psError(PS_ERR_IO, true, "Requested chip == %d >= in->chips->n == %d", view->chip, in->chips->n);
     220        psError(PS_ERR_IO, true, "Requested chip == %d >= in->chips->n == %ld", view->chip, in->chips->n);
    221221        return false;
    222222    }
     
    229229    }
    230230    if (view->cell >= inChip->cells->n) {
    231         psError(PS_ERR_IO, true, "Requested cell == %d>= inChip->cells->n == %d",
     231        psError(PS_ERR_IO, true, "Requested cell == %d>= inChip->cells->n == %ld",
    232232                view->cell, inChip->cells->n);
    233233        return false;
     
    261261    }
    262262    if (view->chip >= in->chips->n) {
    263         psError(PS_ERR_IO, true, "Requested chip == %d >= in->chips->n == %d", view->chip, in->chips->n);
     263        psError(PS_ERR_IO, true, "Requested chip == %d >= in->chips->n == %ld", view->chip, in->chips->n);
    264264        return false;
    265265    }
     
    272272    }
    273273    if (view->cell >= inChip->cells->n) {
    274         psError(PS_ERR_IO, true, "Requested cell == %d>= inChip->cells->n == %d",
     274        psError(PS_ERR_IO, true, "Requested cell == %d>= inChip->cells->n == %ld",
    275275                view->cell, inChip->cells->n);
    276276        return false;
Note: See TracChangeset for help on using the changeset viewer.