IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8674


Ignore:
Timestamp:
Aug 29, 2006, 12:02:19 PM (20 years ago)
Author:
jhoblitt
Message:

fix a wide range of format string errors

Location:
trunk/psastro/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src/psastroLoadReferences.c

    r7575 r8674  
    115115    psFree (table);
    116116
    117     psTrace (__func__, 3, "loaded %d reference stars from (%10.6f,%10.6f) - (%10.6f,%10.6f)\n",
     117    psTrace (__func__, 3, "loaded %ld reference stars from (%10.6f,%10.6f) - (%10.6f,%10.6f)\n",
    118118             refs->n, RAmin, DECmin, RAmax, DECmax);
    119119    return refs;
  • trunk/psastro/src/psastroMosaicGetRefstars.c

    r7637 r8674  
    7575                    psFree (ref);
    7676                }
    77                 psTrace (__func__, 4, "Added %d refstars\n", refstars->n);
     77                psTrace (__func__, 4, "Added %ld refstars\n", refstars->n);
    7878                psMetadataAdd (readout->analysis, PS_LIST_TAIL, "PSASTRO.REFSTARS", PS_DATA_ARRAY, "astrometry matches", refstars);
    7979
  • trunk/psastro/src/psastroMosaicSetMatch.c

    r7332 r8674  
    3535                psArray *refstars = psMetadataLookupPtr (NULL, readout->analysis, "PSASTRO.REFSTARS");
    3636                if (refstars == NULL) { continue; }
    37                 psTrace (__func__, 4, "Trying %d refstars\n", refstars->n);
     37                psTrace (__func__, 4, "Trying %ld refstars\n", refstars->n);
    3838
    3939                // use small radius to match stars (assume starting astrometry is good)
    4040                // XXX should this take a (double radius)?
    4141                psArray *matches = pmAstromRadiusMatchChip (rawstars, refstars, recipe);
    42                 psTrace (__func__, 4, "Matched %d refstars\n", matches->n);
     42                psTrace (__func__, 4, "Matched %ld refstars\n", matches->n);
    4343
    4444                sprintf (name, "raw.%02d.dat", view->chip);
  • trunk/psastro/src/psastroWCS.c

    r7332 r8674  
    213213        break;
    214214      default:
    215         psLogMsg ("psastro", 2, "warning: unknown projection type %s\n", toSky->type);
     215        psLogMsg ("psastro", 2, "warning: unknown projection type %d\n", toSky->type);
    216216        return false;
    217217    }
Note: See TracChangeset for help on using the changeset viewer.