IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 24, 2007, 3:06:43 PM (19 years ago)
Author:
jhoblitt
Message:

printf() format type casting fixes & fix a missing variable

File:
1 edited

Legend:

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

    r8783 r11278  
    170170    psTrace("stac.config", 8, "Parsed command line for configuration\n");
    171171    psTrace("stac.config", 9, "Verbosity level: %d\n",config->verbose);
    172     psTrace("stac.config", 9, "%d inputs:\n",config->inputs->n);
     172    psTrace("stac.config", 9, "%ld inputs:\n",config->inputs->n);
    173173    for (int i = 0; i < config->inputs->n; i++) {
    174         psTrace("stac.config", 9, "\t%s\n", config->inputs->data[i]);
     174        psTrace("stac.config", 9, "\t%s\n", (char *)config->inputs->data[i]);
    175175    }
    176176    psTrace("stac.config", 9, "Output file is %s\n",config->output);
Note: See TracChangeset for help on using the changeset viewer.