IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 19, 2007, 2:52:16 PM (19 years ago)
Author:
jhoblitt
Message:

cast psTrace*() funtion return values to void that were causing warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/config/pmConfig.c

    r11687 r12501  
    44 *  @author EAM (IfA)
    55 *
    6  *  @version $Revision: 1.77 $ $Name: not supported by cvs2svn $
    7  *  @date $Date: 2007-02-07 23:58:17 $
     6 *  @version $Revision: 1.78 $ $Name: not supported by cvs2svn $
     7 *  @date $Date: 2007-03-20 00:52:16 $
    88 *
    99 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    429429                psTrace("psModules.config", 7, "Setting trace level for %s to %d\n", traceItem->name,
    430430                        traceItem->data.S32);
    431                 psTraceSetLevel(traceItem->name, traceItem->data.S32);
     431                (void)psTraceSetLevel(traceItem->name, traceItem->data.S32);
    432432            }
    433433            psFree(traceIter);
     
    439439        {
    440440            psTrace("psModules.config", 7, "Setting trace format to %s\n", traceFormat);
    441             psTraceSetFormat(traceFormat);
     441            (void)psTraceSetFormat(traceFormat);
    442442        }
    443443
Note: See TracChangeset for help on using the changeset viewer.