mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Add missing braces in dht_test.c.
astyle doesn't catch all of these.
This commit is contained in:
parent
affaaee210
commit
c1b7edbed3
|
@ -387,9 +387,10 @@ static void test_addto_lists(IP ip)
|
|||
// check "good" entries
|
||||
test_addto_lists_good(dht, dht->close_clientlist, LCLIENT_LIST, &ip_port, dht->self_public_key);
|
||||
|
||||
for (i = 0; i < dht->num_friends; ++i)
|
||||
for (i = 0; i < dht->num_friends; ++i) {
|
||||
test_addto_lists_good(dht, dht->friends_list[i].client_list, MAX_FRIEND_CLIENTS, &ip_port,
|
||||
dht->friends_list[i].public_key);
|
||||
}
|
||||
|
||||
kill_dht(dht);
|
||||
kill_networking(net);
|
||||
|
|
Loading…
Reference in New Issue
Block a user