mirror of
https://github.com/status-im/miniupnp.git
synced 2025-01-11 22:54:17 +00:00
suppress warnings for some intentional fallthrough cases in switch statements
This commit is contained in:
parent
2c45b0793e
commit
b5021ef57f
@ -49,6 +49,7 @@
|
||||
#include <signal.h>
|
||||
|
||||
#include "../config.h"
|
||||
#include "../macros.h"
|
||||
|
||||
#ifdef USE_IFACEWATCHER
|
||||
|
||||
@ -280,6 +281,7 @@ ProcessInterfaceWatchNotify(int s)
|
||||
switch(nlhdr->nlmsg_type) {
|
||||
case RTM_DELLINK:
|
||||
is_del = 1;
|
||||
FALL_THROUGH;
|
||||
case RTM_NEWLINK:
|
||||
#if 0
|
||||
/* disabled at the moment */
|
||||
@ -295,6 +297,7 @@ ProcessInterfaceWatchNotify(int s)
|
||||
break;
|
||||
case RTM_DELADDR:
|
||||
is_del = 1;
|
||||
FALL_THROUGH;
|
||||
case RTM_NEWADDR:
|
||||
/* see /usr/include/linux/netlink.h
|
||||
* and /usr/include/linux/rtnetlink.h */
|
||||
|
Loading…
x
Reference in New Issue
Block a user