Merge pull request #1848 from afonsomota/noprobingfix

fix misplaced bracket causing compilation error when probing is disabled
This commit is contained in:
Simon Duquennoy 2016-09-06 08:50:08 +02:00 committed by GitHub
commit 406e517d52

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_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);
}