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

gnrc_static: fix build if only static address is set

This commit is contained in:
Benjamin Valentin 2023-03-16 11:19:53 +01:00
parent 6894ee4106
commit 3f2d36d14f

View File

@ -84,7 +84,7 @@ static void _config_downstream(gnrc_netif_t *downstream)
DEBUG("gnrc_ipv6_static_addr: interface %u selected as downstream\n", downstream->pid);
if (CONFIG_GNRC_IPV6_STATIC_PREFIX == NULL) {
if (static_prefix == NULL) {
return;
}