Changeset 11702 for trunk/ippTools/src/dettool.c
- Timestamp:
- Feb 7, 2007, 5:52:32 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/dettool.c (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/dettool.c
r11480 r11702 136 136 MODECASE(DETTOOL_MODE_REGISTER_DETREND_IMFILE, register_detrend_imfileMode); 137 137 default: 138 psAbort( argv[0],"invalid option (this should not happen)");138 psAbort("invalid option (this should not happen)"); 139 139 } 140 140 … … 457 457 psFree(iter); 458 458 } else { 459 psAbort(config->argv[0], 460 "-exp_tag was not parsed correctly (this should not happen"); 459 psAbort( "-exp_tag was not parsed correctly (this should not happen"); 461 460 } 462 461 … … 476 475 // we should have one rawExp row per exp_tag specified 477 476 if (psListLength(item->data.list) != psArrayLength(detrendExps)) { 478 psAbort(config->argv[0], 479 "an -exp_tag matched more then one rawExp (this should not happen"); 477 psAbort( "an -exp_tag matched more then one rawExp (this should not happen"); 480 478 481 479 } … … 579 577 // sanity check results 580 578 if (psArrayLength(detRuns) != 1) { 581 psAbort( config->argv[0],"found more then one detRun matching det_id %ld(this should not happen)", det_id);579 psAbort("found more then one detRun matching det_id %ld(this should not happen)", det_id); 582 580 return false; 583 581 } … … 1213 1211 // sanity check results 1214 1212 if (psArrayLength(detRuns) != 1) { 1215 psAbort( config->argv[0],"found more then one detRun matching det_id %ld(this should not happen)", det_id);1213 psAbort("found more then one detRun matching det_id %ld(this should not happen)", det_id); 1216 1214 return false; 1217 1215 } … … 1266 1264 // sanity check the result... we should have only found one det_id 1267 1265 if (psArrayLength(detRuns) != 1) { 1268 psAbort( config->argv[0],"found more then one detRun matching det_id %d(this should not happen)", (psS32)atoi(det_id));1266 psAbort("found more then one detRun matching det_id %d(this should not happen)", (psS32)atoi(det_id)); 1269 1267 return false; // unreachable 1270 1268 } … … 1627 1625 // sanity check the result... we should have only found one det_id 1628 1626 if (psArrayLength(newDetRuns) != 1) { 1629 psAbort( config->argv[0],"found more then one detRun matching det_id %ld(this should not happen)", newDet_id);1627 psAbort("found more then one detRun matching det_id %ld(this should not happen)", newDet_id); 1630 1628 return false; // unreachable 1631 1629 } … … 5962 5960 psFree(iter); 5963 5961 } else { 5964 psAbort(config->argv[0], 5965 "-exp_tag was not parsed correctly (this should not happen"); 5962 psAbort( "-exp_tag was not parsed correctly (this should not happen"); 5966 5963 } 5967 5964 … … 6462 6459 if (psArrayLength(detRuns) != 1) { 6463 6460 // this should no happen 6464 psAbort(config->argv[0], 6465 "database query return too many rows (this should not happen"); 6461 psAbort( "database query return too many rows (this should not happen"); 6466 6462 } 6467 6463
Note:
See TracChangeset
for help on using the changeset viewer.
