IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5737


Ignore:
Timestamp:
Dec 7, 2005, 12:27:57 PM (20 years ago)
Author:
magnier
Message:

badLines in psMetadataConfigParse must be unsigned

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_rel9_b0/psModules/src/config/pmConfig.c

    r5516 r5737  
    33 *  @author PAP, IfA
    44 *
    5  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2005-11-15 20:09:03 $
     5 *  @version $Revision: 1.4.4.1 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2005-12-07 22:27:57 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828    const char *description)            // Description of file
    2929{
    30     int numBadLines = 0;
     30    unsigned int numBadLines = 0;
    3131
    3232    psLogMsg(__func__, PS_LOG_INFO, "Loading %s configuration from file %s\n",
     
    359359        } else if (cameraItem->type == PS_DATA_STRING) {
    360360            psTrace(__func__, 5, "Reading camera configuration for %s...\n", cameraItem->name);
    361             int badLines = 0;  // Number of bad lines in reading camera configuration
     361            unsigned int badLines = 0;  // Number of bad lines in reading camera configuration
    362362            camera = psMetadataConfigParse(NULL, &badLines, cameraItem->data.V, true);
    363363            if (badLines > 0) {
Note: See TracChangeset for help on using the changeset viewer.