fix misplaced bracket causing compilation error when probing is deactivated (RPL_WITH_PROBING=0)

This commit is contained in:
Afonso Oliveira 2016-09-05 14:49:41 +01:00
parent 26ed666948
commit 4c5b70e628
1 changed files with 1 additions and 1 deletions

View File

@ -917,11 +917,11 @@ rpl_select_parent(rpl_dag_t *dag)
/* Probe the best parent shortly in order to get a fresh estimate */
dag->instance->urgent_probing_target = best;
rpl_schedule_probing(dag->instance);
}
#else /* RPL_WITH_PROBING */
rpl_set_preferred_parent(dag, best);
dag->rank = rpl_rank_via_parent(dag->preferred_parent);
#endif /* RPL_WITH_PROBING */
}
} else {
rpl_set_preferred_parent(dag, NULL);
}