IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 14, 2004, 10:01:52 AM (22 years ago)
Author:
desonia
Message:

Updated files in src/collections to use new psError functionality. Also
cleaned up the code where needed, removing unnecessary error conditions,
etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psLogMsg.c

    r1798 r1807  
    1111 *  @author George Gusciora, MHPCC
    1212 *
    13  *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-09-11 03:03:36 $
     13 *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-09-14 20:01:52 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    383383    va_end(ap);
    384384}
     385void psWarning(const char* name, const char* fmt, ...)
     386{
     387    va_list ap;
     388
     389    va_start(ap, fmt);
     390    psLogMsgV(name, PS_LOG_WARN, fmt, ap);
     391    va_end(ap);
     392}
Note: See TracChangeset for help on using the changeset viewer.