Merge pull request #1871 from gkelly/fix-rpl-debug

rpl: fix debugging PRINTF in find_removable_dio
This commit is contained in:
Nicolas Tsiftes 2016-09-23 13:34:49 +02:00 committed by GitHub
commit ef78b44a86
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;
}
/*---------------------------------------------------------------------------*/