Changeset 6dbed52 in buchla-68k


Ignore:
Timestamp:
07/17/2017 04:07:19 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
703d4d0
Parents:
499da16
Message:

Explicitly mark fall-throughs.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcio/scan.c

    r499da16 r6dbed52  
    148148                        case 'D':
    149149                                lflag = TRUE;
     150                                /* fall through */
    150151
    151152                        case 'd':
     
    157158                        case 'X':
    158159                                lflag = TRUE;
     160                                /* fall through */
    159161
    160162                        case 'x':
     
    165167                        case 'O':
    166168                                lflag = TRUE;
     169                                /* fall through */
    167170
    168171                        case 'o':
  • libsm/strtol.c

    r499da16 r6dbed52  
    3333                case '-':
    3434                        neg++;
     35                        /* fall through */
    3536
    36                 case '+': /* fall-through */
     37                case '+':
    3738                        c = *++str;
     39                        /* fall through */
    3840                }
    3941        }
Note: See TracChangeset for help on using the changeset viewer.