rpl: fix debugging PRINTF in find_removable_dio

This commit is contained in:
Garret Kelly 2016-09-22 10:47:51 -04:00
parent 6aa5890e73
commit 42c4cb94e0
1 changed files with 2 additions and 2 deletions

View File

@ -203,13 +203,13 @@ find_removable_dio(uip_ipaddr_t *from, rpl_dio_t *dio)
if(dio->rank + instance->min_hoprankinc < worst_rank - instance->min_hoprankinc / 2) {
/* Found *great* neighbor - add! */
PRINTF("Found better neighbor %d < %d - add to cache...\n",
rank, worst_rank);
dio->rank, worst_rank);
return worst_rank_nbr;
}
PRINTF("Found worse neighbor with new %d and old %d - NOT add to cache.\n",
rank, worst_rank);
dio->rank, worst_rank);
return NULL;
}
/*---------------------------------------------------------------------------*/