Changeset 7149 for trunk/ippTools/src/dettool.c
- Timestamp:
- May 18, 2006, 5:59:36 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/dettool.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/dettool.c
r7147 r7149 15 15 static bool stacMode(pxConfig *config); 16 16 static bool stacframeMode(pxConfig *config); 17 static bool addmasterMode(pxConfig *config); 17 18 18 19 static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id); … … 59 60 } 60 61 break; 62 case DETTOOL_MODE_ADDMASTER: 63 if (!addmasterMode(config)) { 64 goto FAIL; 65 } 66 break; 61 67 default: 62 68 psAbort(argv[0], "invalid option (this should not happen)"); … … 79 85 if (!psDBTransaction(config->dbh)) { 80 86 psError(PS_ERR_UNKNOWN, false, "database error"); 81 return false;87 82 88 } 83 89 … … 570 576 return true; 571 577 } 578 579 static bool addmasterMode(pxConfig *config) 580 { 581 PS_ASSERT_PTR_NON_NULL(config, false); 582 583 return true; 584 }
Note:
See TracChangeset
for help on using the changeset viewer.
