IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12511


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

silence psTrace*() errors

Location:
trunk/stac/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/stac/src/combine.c

    r9740 r12511  
    1111{
    1212    // Set trace levels
    13     psTraceSetLevel(".", 0);
    14     psTraceSetLevel("stac.checkMemory", 10);
    15     psTraceSetLevel("stac.read", 10);
    16     psTraceSetLevel("stac.scales", 7);
    17     psTraceSetLevel("stac.rescale", 10);
    18     psTraceSetLevel("stac.combine", 10);
    19     psTraceSetLevel("combine", 10);
     13    (void)psTraceSetLevel(".", 0);
     14    (void)psTraceSetLevel("stac.checkMemory", 10);
     15    (void)psTraceSetLevel("stac.read", 10);
     16    (void)psTraceSetLevel("stac.scales", 7);
     17    (void)psTraceSetLevel("stac.rescale", 10);
     18    (void)psTraceSetLevel("stac.combine", 10);
     19    (void)psTraceSetLevel("combine", 10);
    2020
    2121    // Set logging level
  • trunk/stac/src/shift.c

    r9740 r12511  
    3030{
    3131    // Set trace levels
    32     psTraceSetLevel(".", 0);
    33     psTraceSetLevel("stac.checkMemory", 10);
    34     psTraceSetLevel("stac.read", 10);
    35     psTraceSetLevel("stac.invertMaps", 10);
    36     psTraceSetLevel("stac.transform", 10);
    37     psTraceSetLevel("stac.size", 10);
    38     psTraceSetLevel("shift", 10);
     32    (void)psTraceSetLevel(".", 0);
     33    (void)psTraceSetLevel("stac.checkMemory", 10);
     34    (void)psTraceSetLevel("stac.read", 10);
     35    (void)psTraceSetLevel("stac.invertMaps", 10);
     36    (void)psTraceSetLevel("stac.transform", 10);
     37    (void)psTraceSetLevel("stac.size", 10);
     38    (void)psTraceSetLevel("shift", 10);
    3939
    4040    // Set logging level
  • trunk/stac/src/shiftSize.c

    r11133 r12511  
    3333{
    3434    // Set trace levels
    35     psTraceSetLevel(".",0);
    36     psTraceSetLevel("err", 10);
     35    (void)psTraceSetLevel(".",0);
     36    (void)psTraceSetLevel("err", 10);
    3737#ifdef TESTING
    38     psTraceSetLevel("stac.checkMemory",10);
    39     psTraceSetLevel("stac.read",10);
    40     psTraceSetLevel("stac.size",10);
     38    (void)psTraceSetLevel("stac.checkMemory",10);
     39    (void)psTraceSetLevel("stac.read",10);
     40    (void)psTraceSetLevel("stac.size",10);
    4141#endif
    4242
  • trunk/stac/src/stac.c

    r9740 r12511  
    2222
    2323    // Set trace levels
    24     psTraceSetLevel(".",0);
    25     psTraceSetLevel("stac",10);
    26     psTraceSetLevel("stac.checkMemory",10);
    27     psTraceSetLevel("stac.config",10);
    28     psTraceSetLevel("stac.read",10);
    29     psTraceSetLevel("stac.invertMaps",10);
    30     psTraceSetLevel("stac.errors",10);
    31     psTraceSetLevel("stac.transform",10);
    32     psTraceSetLevel("stac.combine",10);
    33     psTraceSetLevel("stac.rejection",10);
    34     psTraceSetLevel("stac.time",10);
    35     psTraceSetLevel("stac.area",10);
    36     psTraceSetLevel("stac.size",10);
    37     psTraceSetLevel("stac.scales",7);
     24    (void)psTraceSetLevel(".",0);
     25    (void)psTraceSetLevel("stac",10);
     26    (void)psTraceSetLevel("stac.checkMemory",10);
     27    (void)psTraceSetLevel("stac.config",10);
     28    (void)psTraceSetLevel("stac.read",10);
     29    (void)psTraceSetLevel("stac.invertMaps",10);
     30    (void)psTraceSetLevel("stac.errors",10);
     31    (void)psTraceSetLevel("stac.transform",10);
     32    (void)psTraceSetLevel("stac.combine",10);
     33    (void)psTraceSetLevel("stac.rejection",10);
     34    (void)psTraceSetLevel("stac.time",10);
     35    (void)psTraceSetLevel("stac.area",10);
     36    (void)psTraceSetLevel("stac.size",10);
     37    (void)psTraceSetLevel("stac.scales",7);
    3838
    3939    // Set logging level
Note: See TracChangeset for help on using the changeset viewer.