1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +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: default:
break; break;
} }
/* Intentionally falls through */
#endif /* defined(MODULE_NETDEV_IEEE802154) || defined(MODULE_XBEE) */ #endif /* defined(MODULE_NETDEV_IEEE802154) || defined(MODULE_XBEE) */
/* Intentionally falls through */
default: default:
return l2util_eui64_from_addr(netif->device_type, addr, return l2util_eui64_from_addr(netif->device_type, addr,
addr_len, eui64); addr_len, eui64);