IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 26, 2007, 2:13:34 PM (19 years ago)
Author:
jhoblitt
Message:

fix missing switch 'case' statements

File:
1 edited

Legend:

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

    r11326 r11329  
    144144        psErrorCode err = psErrorCodeLast();
    145145        switch (err) {
    146             PS_ERR_DB_CLIENT:
     146            case PS_ERR_DB_CLIENT:
    147147                psError(PXTOOLS_ERR_SYS, false, "database error");
    148             PS_ERR_DB_SERVER:
     148            case PS_ERR_DB_SERVER:
    149149                psError(PXTOOLS_ERR_PROG, false, "database error");
    150150            default:
     
    263263        psErrorCode err = psErrorCodeLast();
    264264        switch (err) {
    265             PS_ERR_DB_CLIENT:
     265            case PS_ERR_DB_CLIENT:
    266266                psError(PXTOOLS_ERR_SYS, false, "database error");
    267             PS_ERR_DB_SERVER:
     267            case PS_ERR_DB_SERVER:
    268268                psError(PXTOOLS_ERR_PROG, false, "database error");
    269269            default:
     
    402402        psErrorCode err = psErrorCodeLast();
    403403        switch (err) {
    404             PS_ERR_DB_CLIENT:
     404            case PS_ERR_DB_CLIENT:
    405405                psError(PXTOOLS_ERR_SYS, false, "database error");
    406             PS_ERR_DB_SERVER:
     406            case PS_ERR_DB_SERVER:
    407407                psError(PXTOOLS_ERR_PROG, false, "database error");
    408408            default:
     
    516516        psErrorCode err = psErrorCodeLast();
    517517        switch (err) {
    518             PS_ERR_DB_CLIENT:
     518            case PS_ERR_DB_CLIENT:
    519519                psError(PXTOOLS_ERR_SYS, false, "database error");
    520             PS_ERR_DB_SERVER:
     520            case PS_ERR_DB_SERVER:
    521521                psError(PXTOOLS_ERR_PROG, false, "database error");
    522522            default:
     
    603603        psErrorCode err = psErrorCodeLast();
    604604        switch (err) {
    605             PS_ERR_DB_CLIENT:
     605            case PS_ERR_DB_CLIENT:
    606606                psError(PXTOOLS_ERR_SYS, false, "database error");
    607             PS_ERR_DB_SERVER:
     607            case PS_ERR_DB_SERVER:
    608608                psError(PXTOOLS_ERR_PROG, false, "database error");
    609609            default:
     
    833833        psErrorCode err = psErrorCodeLast();
    834834        switch (err) {
    835             PS_ERR_DB_CLIENT:
     835            case PS_ERR_DB_CLIENT:
    836836                psError(PXTOOLS_ERR_SYS, false, "database error");
    837             PS_ERR_DB_SERVER:
     837            case PS_ERR_DB_SERVER:
    838838                psError(PXTOOLS_ERR_PROG, false, "database error");
    839839            default:
Note: See TracChangeset for help on using the changeset viewer.