IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 23, 2007, 2:02:30 PM (18 years ago)
Author:
jhoblitt
Message:

update flatcoor -newrun options
fix flatcorr -> flatcorrp typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/flatcorr.c

    r15606 r15684  
    3737static bool updateMode(pxConfig *config);
    3838
    39 static bool setflatcorrpRunState(pxConfig *config, psS64 corr_id, const char *state);
     39static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state);
    4040
    4141# define MODECASE(caseName, func) \
     
    317317
    318318    // set the flatcorrRun to a state of 'run'
    319     if (!setflatcorrpRunState(config, corr_id, "run")) {
     319    if (!setflatcorrRunState(config, corr_id, "run")) {
    320320        if (!psDBRollback(config->dbh)) {
    321321            psError(PS_ERR_UNKNOWN, false, "database error");
     
    348348
    349349
    350 static bool setflatcorrpRunState(pxConfig *config, psS64 corr_id, const char *state)
     350static bool setflatcorrRunState(pxConfig *config, psS64 corr_id, const char *state)
    351351{
    352352    PS_ASSERT_PTR_NON_NULL(state, false);
     
    363363    }
    364364
    365     char *query = "UPDATE flatcorrpRun SET state = '%s' WHERE corr_id = %" PRId64;
     365    char *query = "UPDATE flatcorrRun SET state = '%s' WHERE corr_id = %" PRId64;
    366366    if (!p_psDBRunQuery(config->dbh, query, state, corr_id)) {
    367367        psError(PS_ERR_UNKNOWN, false,
Note: See TracChangeset for help on using the changeset viewer.