Skip to content

Commit ef95483

Browse files
AlexFabrekartben
authored andcommitted
net: lladdr: add default case to switch
This commit only eliminates warning message raised by GCC when option '-Wswitch-default' is used. Signed-off-by: Alex Fabre <alex.fabre@rtone.fr>
1 parent 258b89b commit ef95483

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

include/zephyr/net/net_ip.h

+2
Original file line numberDiff line numberDiff line change
@@ -1539,6 +1539,8 @@ static inline bool net_ipv6_addr_based_on_ll(const struct in6_addr *addr,
15391539
}
15401540

15411541
break;
1542+
default:
1543+
return false;
15421544
}
15431545

15441546
return false;

0 commit comments

Comments
 (0)