Skip to content

Commit

Permalink
[SQUASH ME] removed superflous check
Browse files Browse the repository at this point in the history
  • Loading branch information
BytesGalore authored and BytesGalore committed May 5, 2015
1 parent deb14d6 commit 4fd96bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/net/network_layer/fib/fib.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ static int fib_signal_rrp(uint8_t *dst, size_t dst_size, uint32_t dst_flags)
msg.content.ptr = (void *)&content;

for (size_t i = 0; i < FIB_MAX_RRP; ++i) {
if ((notify_rrp[i] != KERNEL_PID_UNDEF) && (prefix_rrp[i] != NULL)) {
if (notify_rrp[i] != KERNEL_PID_UNDEF) {
DEBUG("[fib_signal_rrp] send msg@: %p to pid[%d]: %d\n", \
msg.content.ptr, (int)i, (int)notify_rrp[i]);

Expand Down

0 comments on commit 4fd96bc

Please sign in to comment.