mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
net/fib: fix clang extra parantheses warning/error
This commit is contained in:
parent
d108a97625
commit
6e3d2b6c53
@ -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( skip ) {
|
||||||
if((*fib_sr == &table->data.source_routes->headers[i])) {
|
if(*fib_sr == &table->data.source_routes->headers[i]) {
|
||||||
skip = false;
|
skip = false;
|
||||||
}
|
}
|
||||||
/* we skip all entries upon the consecutive one to start search */
|
/* we skip all entries upon the consecutive one to start search */
|
||||||
|
Loading…
Reference in New Issue
Block a user