IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8680


Ignore:
Timestamp:
Aug 29, 2006, 1:04:53 PM (20 years ago)
Author:
jhoblitt
Message:

fix a wide range of format string errors

Location:
trunk/ppMerge/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppMerge/src/ppMergeCombine.c

    r8417 r8680  
    137137                    if (!fits) {
    138138                        psError(PS_ERR_IO, false, "Unable to open input file %s --- ignored.\n",
    139                                 filenames->data[k]);
     139                                (char *)filenames->data[k]);
    140140                        continue;
    141141                    }
  • trunk/ppMerge/src/ppMergeOptions.c

    r8405 r8680  
    9999        if (!inFile) {
    100100            psError(PS_ERR_IO, false, "Unable to open input file %s to determine camera.\n",
    101                     filenames->data[0]);
     101                    (char *)filenames->data[0]);
    102102            exit(EXIT_FAILURE);
    103103        }
     
    109109        if (!options->format) {
    110110            psLogMsg(__func__, PS_LOG_WARN, "Unable to identify camera format for input file %s\n",
    111                      filenames->data[0]);
     111                     (char *)filenames->data[0]);
    112112            exit(EXIT_FAILURE);
    113113        }
Note: See TracChangeset for help on using the changeset viewer.