summaryrefslogtreecommitdiffstats
path: root/libsysutils
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2018-10-10 14:39:02 -0700
committerChih-Hung Hsieh <chh@google.com>2018-10-10 14:39:02 -0700
commite6e2b3cda4d702cffd887ec653d4435b9fa77241 (patch)
treea20336bcc3b327bd255b9d7b8ca6bf6be7fd0296 /libsysutils
parentce2a8e5b9e8770acb461f7b336bc2eba9bf5f870 (diff)
downloadsystem_core-e6e2b3cda4d702cffd887ec653d4435b9fa77241.tar.gz
system_core-e6e2b3cda4d702cffd887ec653d4435b9fa77241.tar.bz2
system_core-e6e2b3cda4d702cffd887ec653d4435b9fa77241.zip
Suppress implicit-fallthrough warning.
Bug: 112564944 Test: make checkbuild Change-Id: I2bcfd08ec62f6d5953a9e25dbeaa42ffefda6d1c
Diffstat (limited to 'libsysutils')
-rw-r--r--libsysutils/src/NetlinkEvent.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsysutils/src/NetlinkEvent.cpp b/libsysutils/src/NetlinkEvent.cpp
index 24ea7aac8..9dc269957 100644
--- a/libsysutils/src/NetlinkEvent.cpp
+++ b/libsysutils/src/NetlinkEvent.cpp
@@ -374,6 +374,7 @@ bool NetlinkEvent::parseRtMessage(const struct nlmsghdr *nh) {
continue;
if (!if_indextoname(* (int *) RTA_DATA(rta), dev))
return false;
+ continue;
default:
continue;
}