Changeset 15684 for trunk/ippTools/src/flatcorr.c
- Timestamp:
- Nov 23, 2007, 2:02:30 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/flatcorr.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/flatcorr.c
r15606 r15684 37 37 static bool updateMode(pxConfig *config); 38 38 39 static bool setflatcorr pRunState(pxConfig *config, psS64 corr_id, const char *state);39 static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state); 40 40 41 41 # define MODECASE(caseName, func) \ … … 317 317 318 318 // set the flatcorrRun to a state of 'run' 319 if (!setflatcorr pRunState(config, corr_id, "run")) {319 if (!setflatcorrRunState(config, corr_id, "run")) { 320 320 if (!psDBRollback(config->dbh)) { 321 321 psError(PS_ERR_UNKNOWN, false, "database error"); … … 348 348 349 349 350 static bool setflatcorr pRunState(pxConfig *config, psS64 corr_id, const char *state)350 static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state) 351 351 { 352 352 PS_ASSERT_PTR_NON_NULL(state, false); … … 363 363 } 364 364 365 char *query = "UPDATE flatcorr pRun SET state = '%s' WHERE corr_id = %" PRId64;365 char *query = "UPDATE flatcorrRun SET state = '%s' WHERE corr_id = %" PRId64; 366 366 if (!p_psDBRunQuery(config->dbh, query, state, corr_id)) { 367 367 psError(PS_ERR_UNKNOWN, false,
Note:
See TracChangeset
for help on using the changeset viewer.
