Revision 0b0404bf

b/hw/pcnet.c
1505 1505
#ifdef PCNET_DEBUG
1506 1506
       printf("BCR_SWS=0x%04x\n", val);
1507 1507
#endif
1508
        /* fall through */
1508 1509
    case BCR_LNKST:
1509 1510
    case BCR_LED1:
1510 1511
    case BCR_LED2:
b/json-lexer.c
301 301
        case JSON_KEYWORD:
302 302
        case JSON_STRING:
303 303
            lexer->emit(lexer, lexer->token, new_state, lexer->x, lexer->y);
304
            /* fall through */
304 305
        case JSON_SKIP:
305 306
            QDECREF(lexer->token);
306 307
            lexer->token = qstring_new();
b/qemu-option.c
214 214
        switch (*postfix) {
215 215
        case 'T':
216 216
            sizef *= 1024;
217
            /* fall through */
217 218
        case 'G':
218 219
            sizef *= 1024;
220
            /* fall through */
219 221
        case 'M':
220 222
            sizef *= 1024;
223
            /* fall through */
221 224
        case 'K':
222 225
        case 'k':
223 226
            sizef *= 1024;
227
            /* fall through */
224 228
        case 'b':
225 229
        case '\0':
226 230
            *ret = (uint64_t) sizef;

Also available in: Unified diff