From 3be5c9fdf35ef4d66af42cf8bb9a9ffc31bdc980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= Date: Sun, 19 Nov 2017 19:30:36 +0100 Subject: [PATCH] nib: use correct fall through hint --- sys/net/gnrc/network_layer/ipv6/nib/_nib-arsm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/gnrc/network_layer/ipv6/nib/_nib-arsm.c b/sys/net/gnrc/network_layer/ipv6/nib/_nib-arsm.c index a6d60a5531..772da2f157 100644 --- a/sys/net/gnrc/network_layer/ipv6/nib/_nib-arsm.c +++ b/sys/net/gnrc/network_layer/ipv6/nib/_nib-arsm.c @@ -281,7 +281,7 @@ void _handle_snd_ns(_nib_onl_entry_t *nbr) _set_nud_state(netif, nbr, GNRC_IPV6_NIB_NC_INFO_NUD_STATE_UNREACHABLE); } - /* falls through intentionally */ + /* intentionally falls through */ case GNRC_IPV6_NIB_NC_INFO_NUD_STATE_UNREACHABLE: _probe_nbr(nbr, false); break; @@ -298,7 +298,7 @@ void _handle_state_timeout(_nib_onl_entry_t *nbr) case GNRC_IPV6_NIB_NC_INFO_NUD_STATE_REACHABLE: DEBUG("nib: Timeout reachability\n"); new_state = GNRC_IPV6_NIB_NC_INFO_NUD_STATE_STALE; - /* falls through intentionally */ + /* intentionally falls through */ case GNRC_IPV6_NIB_NC_INFO_NUD_STATE_DELAY: { gnrc_netif_t *netif = gnrc_netif_get_by_pid(_nib_onl_get_if(nbr));