From 6e3d2b6c53bf3ccf878fd559aa7234f20a4a035d Mon Sep 17 00:00:00 2001 From: Thomas Eichinger Date: Mon, 16 Nov 2015 16:05:37 +0100 Subject: [PATCH] net/fib: fix clang extra parantheses warning/error --- sys/net/network_layer/fib/fib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/net/network_layer/fib/fib.c b/sys/net/network_layer/fib/fib.c index 18bfc121d6..d23950a971 100644 --- a/sys/net/network_layer/fib/fib.c +++ b/sys/net/network_layer/fib/fib.c @@ -1283,7 +1283,7 @@ int fib_sr_get_route(fib_table_t *table, uint8_t *dst, size_t dst_size, kernel_p } if( skip ) { - if((*fib_sr == &table->data.source_routes->headers[i])) { + if(*fib_sr == &table->data.source_routes->headers[i]) { skip = false; } /* we skip all entries upon the consecutive one to start search */