IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12510


Ignore:
Timestamp:
Mar 19, 2007, 4:42:41 PM (19 years ago)
Author:
jhoblitt
Message:

silence psTrace*() warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pois/src/pois.c

    r8781 r12510  
    4747
    4848    // Set trace levels
    49     psTraceSetLevel(".", 0);
     49    (void)psTraceSetLevel(".", 0);
    5050
    5151    // Parse the command line
     
    5353
    5454    if (config->verbose) {
    55         psTraceSetLevel("pois", 10);
    56         psTraceSetLevel("pois.config", 10);
    57         psTraceSetLevel("pois.time", 10);
    58         psTraceSetLevel("pois.solution", 0);
    59         psTraceSetLevel("pois.kernelBasisFunctions", 10);
    60         psTraceSetLevel("pois.calculateEquation", 10);
    61         psTraceSetLevel("pois.convolveImage", 10);
    62         psTraceSetLevel("pois.findStamps", 10);
    63         psTraceSetLevel("pois.parseConfig", 10);
    64         psTraceSetLevel("pois.makeMask", 10);
    65         psTraceSetLevel("pois.extractKernel", 10);
    66         psTraceSetLevel("pois.calculateDeviations", 10);
    67         psTraceSetLevel("pois.checkKernel", 10);
     55        (void)psTraceSetLevel("pois", 10);
     56        (void)psTraceSetLevel("pois.config", 10);
     57        (void)psTraceSetLevel("pois.time", 10);
     58        (void)psTraceSetLevel("pois.solution", 0);
     59        (void)psTraceSetLevel("pois.kernelBasisFunctions", 10);
     60        (void)psTraceSetLevel("pois.calculateEquation", 10);
     61        (void)psTraceSetLevel("pois.convolveImage", 10);
     62        (void)psTraceSetLevel("pois.findStamps", 10);
     63        (void)psTraceSetLevel("pois.parseConfig", 10);
     64        (void)psTraceSetLevel("pois.makeMask", 10);
     65        (void)psTraceSetLevel("pois.extractKernel", 10);
     66        (void)psTraceSetLevel("pois.calculateDeviations", 10);
     67        (void)psTraceSetLevel("pois.checkKernel", 10);
    6868        if (config->stampFile) {
    69             psTraceSetLevel("pois.checkStamp", 10);
     69            (void)psTraceSetLevel("pois.checkStamp", 10);
    7070        } else {
    71             psTraceSetLevel("pois.checkStamp", 0);
     71            (void)psTraceSetLevel("pois.checkStamp", 0);
    7272        }
    7373        // Set logging level
Note: See TracChangeset for help on using the changeset viewer.