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/objects/pmSourceIO.c

    r7725 r8669  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2006-06-28 19:21:00 $
     5 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2006-08-29 21:39:44 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7070
    7171    if (view->chip >= fpa->chips->n) {
    72         psError(PS_ERR_UNKNOWN, false, "Writing chip == %d (>= chips->n == %d)", view->chip, fpa->chips->n);
     72        psError(PS_ERR_UNKNOWN, false, "Writing chip == %d (>= chips->n == %ld)", view->chip, fpa->chips->n);
    7373        return false;
    7474    }
     
    8484
    8585    if (view->cell >= chip->cells->n) {
    86         psError(PS_ERR_UNKNOWN, false, "Writing cell == %d (>= cells->n == %d)",
     86        psError(PS_ERR_UNKNOWN, false, "Writing cell == %d (>= cells->n == %ld)",
    8787                view->cell, chip->cells->n);
    8888        return false;
     
    100100
    101101    if (view->readout >= cell->readouts->n) {
    102         psError(PS_ERR_UNKNOWN, false, "Writing readout == %d (>= readouts->n == %d)",
     102        psError(PS_ERR_UNKNOWN, false, "Writing readout == %d (>= readouts->n == %ld)",
    103103                view->readout, cell->readouts->n);
    104104        return false;
Note: See TracChangeset for help on using the changeset viewer.