IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2005, 1:39:51 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

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

    r3264 r4307  
    1010 *  @author Eric Van Alst, MHPCC
    1111 *   
    12  *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-02-17 19:26:24 $
     12 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-06-17 23:39:51 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121#include "psLogMsg.h"
    2222
    23 void psAbort(const char *name, const char *fmt, ...)
     23void psAbort(const char *name, const char *format, ...)
    2424{
    2525    va_list argPtr;             // variable list arguement pointer
    2626
    2727    // Get the variable list parameters to pass to logging function
    28     va_start(argPtr, fmt);
     28    va_start(argPtr, format);
    2929
    3030    // Call logging function with PS_LOG_ABORT level
    31     psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr);
     31    psLogMsgV(name, PS_LOG_ABORT, format, argPtr);
    3232
    3333    // Clean up stack after variable arguement has been used
Note: See TracChangeset for help on using the changeset viewer.