1
0
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:
Thomas Eichinger 2015-11-16 16:05:37 +01:00
parent d108a97625
commit 6e3d2b6c53

View File

@ -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 */