IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 19964


Ignore:
Timestamp:
Oct 7, 2008, 2:42:33 PM (18 years ago)
Author:
Paul Price
Message:

nFail unused.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStats/src/ppStatsFromMetadata.c

    r19626 r19964  
    22
    33// USAGE: ppStatsFromMetadata (input) (output) [-recipe PPSTATS_METADATA recipe]
    4 int main(int argc, char **argv) {
    5 
    6     unsigned int nFail;
     4int main(int argc, char **argv)
     5{
    76    bool status;
    87
     
    2322    psMetadata *input = NULL;
    2423    if (!strcmp (argv[1], "-")) {
    25         psString string = psSlurpFile (stdin);
    26         input = psMetadataConfigParse (NULL, &nFail, string, false);
    27         psFree (string);
     24        psString string = psSlurpFile (stdin);
     25        input = psMetadataConfigParse (NULL, NULL, string, false);
     26        psFree (string);
    2827    } else {
    29         input = psMetadataConfigRead (NULL, &nFail, argv[1], false);
     28        input = psMetadataConfigRead (NULL, NULL, argv[1], false);
    3029    }
    3130
     
    5352        exit(PS_EXIT_CONFIG_ERROR);
    5453    }
    55    
     54
    5655    // calculate the stats for the non-constant entries (already calculated)
    5756    if (!ppStatsFromMetadataStats (entries)) {
Note: See TracChangeset for help on using the changeset viewer.