Changeset 6133 for trunk/ippTools/src/p2writePendingFrames.c
- Timestamp:
- Jan 21, 2006, 3:12:34 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/p2writePendingFrames.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/p2writePendingFrames.c
r6106 r6133 3 3 // select pending frames (exposure+images) which are done/not done 4 4 bool p2writePendingFrames (p2Config *config, psArray *frames) { 5 PS_ASSERT_PTR_NON_NULL(config, false); 6 PS_ASSERT_PTR_NON_NULL(frames, false); 5 7 6 8 fprintf (stdout, "# exp_id class class_id url\n"); … … 8 10 for (int i = 0; i < frames->n; i++) { 9 11 p2PendingFrame *frame = frames->data[i]; 12 PS_ASSERT_PTR_NON_NULL(frame, false); 13 PS_ASSERT_PTR_NON_NULL(frame->images, false); 14 10 15 for (int j = 0; j < frame->images->n; j++) { 11 16 p2PendingImfileRow *image = frame->images->data[j];
Note:
See TracChangeset
for help on using the changeset viewer.
