1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

sys/net/network_layer/ng_ndp: Remove redundant parentheses

This commit is contained in:
Joakim Gebart 2015-07-20 11:48:12 +02:00
parent b65a6d5b77
commit cde4393557

View File

@ -448,7 +448,7 @@ kernel_pid_t ng_ndp_next_hop_l2addr(uint8_t *l2addr, uint8_t *l2addr_len,
#endif
if ((next_hop_ip == NULL)) { /* no route to host */
if (next_hop_ip == NULL) { /* no route to host */
if (iface == KERNEL_PID_UNDEF) {
/* ng_ipv6_netif_t doubles as prefix list */
iface = ng_ipv6_netif_find_by_prefix(&prefix, dst);