IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 19, 2006, 4:16:26 PM (20 years ago)
Author:
jhoblitt
Message:

compilation fixes
switch to using the metadatadb API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/p2writePendingFrames.c

    r5881 r6060  
    22
    33// select pending frames (exposure+images) which are done/not done
    4 bool p2writePendingImages (p2SearchConfig *config, psArray *frames) {
     4bool p2writePendingFrames (p2Config *config, psArray *frames) {
    55
    66    for (int i = 0; i < frames->n; i++) {
     
    88       
    99        for (int j = 0; j < frame->images->n; j++) {
    10             p2PendingImage *image = frame->images->data[j];
    11             fprintf (stdout, "%s %c %c %s %s %s %s %s %s %c\n",
    12                      image->expID,
    13                      image->P2version,
     10            p2PendingImfileRow *image = frame->images->data[j];
     11            fprintf (stdout, "%s %d %s %s %s\n",
     12                     image->exp_id,
     13                     image->p2_version,
    1414                     image->class,
    15                      image->classID,
    16                      image->urlroot,
    17                      image->input,
    18                      image->output,
    19                      image->log,
    20                      image->smf,
    21                      image->state);
     15                     image->class_id,
     16                     image->url);
    2217        }
    2318    }
Note: See TracChangeset for help on using the changeset viewer.