IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8801


Ignore:
Timestamp:
Sep 12, 2006, 11:25:59 AM (20 years ago)
Author:
jhoblitt
Message:

treat MAX_ERROR_STACK_SIZE as a long

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psError.c

    r8800 r8801  
    1111 *  @author Eric Van Alst, MHPCC
    1212 *
    13  *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-09-12 21:10:22 $
     13 *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-09-12 21:25:59 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6161        psArrayAdd(errorStack, 0, err);
    6262    } else {
    63         psAbort(__func__, "attempt to exceed maximum error stack depth of %d",
    64                 MAX_ERROR_STACK_SIZE);
     63        psAbort(__func__, "attempt to exceed maximum error stack depth of %ld",
     64                (long)MAX_ERROR_STACK_SIZE);
    6565    }
    6666}
Note: See TracChangeset for help on using the changeset viewer.