IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 20, 2006, 5:00:51 PM (20 years ago)
Author:
jhoblitt
Message:

revised output format

File:
1 edited

Legend:

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

    r6086 r6106  
    44bool p2writePendingFrames (p2Config *config, psArray *frames) {
    55
     6    fprintf (stdout, "# exp_id class class_id url\n");
     7
    68    for (int i = 0; i < frames->n; i++) {
    79        p2PendingFrame *frame = frames->data[i];
    810        for (int j = 0; j < frame->images->n; j++) {
    911            p2PendingImfileRow *image = frame->images->data[j];
    10             fprintf (stdout, "%s %d %s %s %s\n",
    11             image->exp_id,
    12             image->p2_version,
    13             image->class,
    14             image->class_id,
    15             image->url);
     12            fprintf (stdout, "%s %s %s %s\n",
     13                image->exp_id,
     14                image->class,
     15                image->class_id,
     16                image->url
     17            );
    1618        }
    1719    }
Note: See TracChangeset for help on using the changeset viewer.