IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 24, 2006, 3:27:48 PM (20 years ago)
Author:
jhoblitt
Message:

fix the variable naming discrepancy in psErrorRgister() introduced by 1.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psErrorCodes.c.in

    r7957 r7967  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2006-07-25 00:30:31 $
     9 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-07-25 01:27:48 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    106106                     int errorCode)
    107107{
    108     if (nerror < 1) {
     108    if (errorCode < 1) {
    109109        return;
    110110    }
     
    127127    }
    128128
    129     for (psS32 i=0;i<nerror;i++) {
     129    for (psS32 i = 0; i < errorCode; i++) {
    130130        psErrorDescription* err = psErrorDescriptionAlloc(
    131131                                      errors[i].code, errors[i].description);
Note: See TracChangeset for help on using the changeset viewer.