Changeset c8c418cf in mainline


Ignore:
Timestamp:
2018-08-04T14:03:57Z (6 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7afd12e5
Parents:
c8da69d
Message:

add explicit breaks that do not hurt anybody

Location:
uspace
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    rc8da69d rc8c418cf  
    207207                -Wno-unused-command-line-argument
    208208else
    209         # FIXME: -Wimplicit-fallthrough is broken in GCC 8.2.0
    210209        DEFAULT_CFLAGS += \
    211                 -Wno-implicit-fallthrough \
    212210                -Wno-clobbered
    213211endif
  • uspace/app/sbi/src/ancr.c

    rc8da69d rc8c418cf  
    216216                        case csi_struct:
    217217                                assert(b_false); /* XXX */
    218                                 /* Fallthrough */
     218                                break;
    219219                        case csi_interface:
    220220                                cspan_print(csi->name->cspan);
     
    228228                                break;
    229229                        }
     230                        break;
    230231                case csi_struct:
    231232                        assert(b_false); /* XXX */
     233                        break;
    232234                case csi_interface:
    233235                        break;
Note: See TracChangeset for help on using the changeset viewer.