Changeset 6221 for trunk/ippTools/src/chiptool.c
- Timestamp:
- Jan 26, 2006, 4:43:36 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/chiptool.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/chiptool.c
r6220 r6221 53 53 psArray *rawFrames = p2searchRawFrames(config); 54 54 if (!rawFrames) { 55 psError(PS_ERR_UNKNOWN, false, "no ppRawFrames found");55 psError(PS_ERR_UNKNOWN, false, "no rawScienceFrames found"); 56 56 return false; 57 57 } … … 74 74 psArray *rawFrames = p2searchRawFrames(config); 75 75 if (!rawFrames) { 76 psError(PS_ERR_UNKNOWN, false, "no ppRawFrames found");76 psError(PS_ERR_UNKNOWN, false, "no rawScienceFrames found"); 77 77 return false; 78 78 } … … 84 84 if (pendingFrames) { 85 85 for (int i = 0; i < rawFrames->n; i++) { 86 ppRawFrame *rawFrame = rawFrames->data[i];86 rawScienceFrame *rawFrame = rawFrames->data[i]; 87 87 for (int j = 0; j < pendingFrames->n; j++) { 88 88 p2PendingFrame *pendingFrame = pendingFrames->data[j]; … … 104 104 if (doneFrames && (rawFrames->n > 0)) { 105 105 for (int i = 0; i < rawFrames->n; i++) { 106 ppRawFrame *rawFrame = rawFrames->data[i];106 rawScienceFrame *rawFrame = rawFrames->data[i]; 107 107 for (int j = 0; j < pendingFrames->n; j++) { 108 108 p2DoneFrame *doneFrame = pendingFrames->data[j]; … … 122 122 123 123 if (!rawFrames->n > 0) { 124 psError(PS_ERR_UNKNOWN, false, "no unprocessed ppRawFrames found");124 psError(PS_ERR_UNKNOWN, false, "no unprocessed rawScienceFrames found"); 125 125 psFree(rawFrames); 126 126 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
