Changeset 3239 for trunk/src


Ignore:
Timestamp:
Dec 25, 2018, 9:47:30 PM (7 years ago)
Author:
bird
Message:

kObjCache: GCC warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kObjCache/kObjCache.c

    r3167 r3239  
    943943                cchInput -= psz - pszInput;
    944944                pszInput = psz;
     945                /* fall thru */
    945946
    946947            case kOCDepState_NeedHash:
     
    955956                cchInput--;
    956957                enmState = kOCDepState_NeedLine_l;
     958                /* fall thru */
    957959
    958960            case kOCDepState_NeedLine_l:
     
    979981                if (!--cchInput)
    980982                    return pDepState->enmState = kOCDepState_NeedLine_i;
     983                /* fall thru */
    981984
    982985            case kOCDepState_NeedLine_i:
     
    986989                if (!--cchInput)
    987990                    return pDepState->enmState = kOCDepState_NeedLine_n;
     991                /* fall thru */
    988992
    989993            case kOCDepState_NeedLine_n:
     
    993997                if (!--cchInput)
    994998                    return pDepState->enmState = kOCDepState_NeedLine_e;
     999                /* fall thru */
    9951000
    9961001            case kOCDepState_NeedLine_e:
     
    10001005                if (!--cchInput)
    10011006                    return pDepState->enmState = kOCDepState_NeedSpaceBeforeDigit;
     1007                /* fall thru */
    10021008
    10031009            case kOCDepState_NeedSpaceBeforeDigit:
     
    10061012                pszInput++;
    10071013                cchInput--;
     1014                /* fall thru */
    10081015
    10091016            case kOCDepState_NeedFirstDigit:
     
    10171024                pszInput++;
    10181025                cchInput--;
     1026                /* fall thru */
    10191027
    10201028            case kOCDepState_NeedMoreDigits:
     
    10231031                if (!cchInput)
    10241032                    return pDepState->enmState = kOCDepState_NeedMoreDigits;
     1033                /* fall thru */
    10251034
    10261035            case kOCDepState_NeedQuote:
     
    10341043                pszInput++;
    10351044                cchInput--;
     1045                /* fall thru */
    10361046
    10371047            case kOCDepState_NeedEndQuote:
     
    10811091                }
    10821092            }
     1093            /* fall thru */
    10831094
    10841095            case kOCDepState_Invalid:
Note: See TracChangeset for help on using the changeset viewer.