mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
r11859@catbus: nickm | 2007-02-21 00:53:27 -0500
Fix use of predict. this should get refactored, but now now. svn:r9611
This commit is contained in:
parent
2a4fc8533c
commit
809a4daa52
1 changed files with 1 additions and 1 deletions
|
@ -4154,7 +4154,7 @@ static int need_to_update_have_min_dir_info = 1;
|
||||||
int
|
int
|
||||||
router_have_minimum_dir_info(void)
|
router_have_minimum_dir_info(void)
|
||||||
{
|
{
|
||||||
if (PREDICT_FALSE(need_to_update_have_min_dir_info)) {
|
if (PREDICT(need_to_update_have_min_dir_info, 0)) {
|
||||||
update_router_have_minimum_dir_info();
|
update_router_have_minimum_dir_info();
|
||||||
need_to_update_have_min_dir_info = 0;
|
need_to_update_have_min_dir_info = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue