Changeset 8062 for trunk/ippTools/src/p2insertPendingFrames.c
- Timestamp:
- Aug 1, 2006, 6:08:45 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/p2insertPendingFrames.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/p2insertPendingFrames.c
r6978 r8062 13 13 14 14 // can we use p2rawToPending() here? 15 for ( inti = 0; i < rawFrames->n; i++) {15 for (long i = 0; i < rawFrames->n; i++) { 16 16 rawScienceFrame *rawFrame = rawFrames->data[i]; 17 17 … … 32 32 33 33 int version = -1; 34 for ( intj = 0; j < exposures->n; j++) {34 for (long j = 0; j < exposures->n; j++) { 35 35 p2PendingExpRow *exposure = exposures->data[j]; 36 36 version = PS_MAX(version, exposure->p2_version); … … 56 56 psArray *pendingImages = psArrayAlloc(rawFrame->images->n); 57 57 pendingImages->n = 0; 58 for ( intj = 0; j < rawFrame->images->n; j++) {58 for (long j = 0; j < rawFrame->images->n; j++) { 59 59 rawImfileRow *rawImage = rawFrame->images->data[j]; 60 60 p2PendingImfileRow *pendingImage = p2PendingImfileRowAlloc( … … 76 76 } 77 77 78 for ( inti = 0; i < pendingImages->n; i++) {78 for (long i = 0; i < pendingImages->n; i++) { 79 79 if (!p2PendingImfileInsertObject(config->dbh, 80 80 pendingImages->data[i])) {
Note:
See TracChangeset
for help on using the changeset viewer.
