IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2005, 4:30:50 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

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

    r3682 r4315  
    1010 *  @author Eric Van Alst, MHPCC
    1111 *
    12  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-04-07 20:27:41 $
     12 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-06-18 02:30:50 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    177177
    178178}
    179 void psErrorStackPrint(FILE *fd, const char *fmt, ...)
     179void psErrorStackPrint(FILE *fd, const char *format, ...)
    180180{
    181181    va_list argPtr;             // variable list arguement pointer
    182182
    183183    // Get the variable list parameters to pass to logging function
    184     va_start(argPtr, fmt);
    185 
    186     psErrorStackPrintV(fd,fmt,argPtr);
     184    va_start(argPtr, format);
     185
     186    psErrorStackPrintV(fd,format,argPtr);
    187187
    188188    va_end(argPtr);
    189189}
    190190
    191 void psErrorStackPrintV(FILE *fd, const char *fmt, va_list va)
     191void psErrorStackPrintV(FILE *fd, const char *format, va_list va)
    192192{
    193193
     
    195195
    196196    if (errorStackSize > 0) {
    197         vfprintf(fd,fmt,va);
     197        vfprintf(fd,format,va);
    198198
    199199        for (psS32 lcv=0;lcv<errorStackSize;lcv++) {
Note: See TracChangeset for help on using the changeset viewer.