1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

gnrc_netif: fix fall-through comment

gcc 8.2.1 has problems with the comment being within the `#ifdef`
This commit is contained in:
Martine Lenders 2019-03-27 19:45:40 +01:00
parent 44e4973cab
commit 768a117ade

View File

@ -75,8 +75,8 @@ int gnrc_netif_eui64_from_addr(const gnrc_netif_t *netif,
default:
break;
}
/* Intentionally falls through */
#endif /* defined(MODULE_NETDEV_IEEE802154) || defined(MODULE_XBEE) */
/* Intentionally falls through */
default:
return l2util_eui64_from_addr(netif->device_type, addr,
addr_len, eui64);