From c886f906a8094b1c636446004162b9e0674923bd Mon Sep 17 00:00:00 2001 From: Roman Yepishev Date: Sat, 27 Feb 2016 14:32:49 -0500 Subject: Move argument comments to the end of line --- toxcore/network.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toxcore') diff --git a/toxcore/network.c b/toxcore/network.c index 5ab480b7..c6cf6ed4 100644 --- a/toxcore/network.c +++ b/toxcore/network.c @@ -970,9 +970,9 @@ int addr_resolve(const char *address, IP *to, IP *extra) } IP ip4; - ip_init(&ip4, /* ipv6? */ false); + ip_init(&ip4, 0); // ipv6enabled = 0 IP ip6; - ip_init(&ip6, /* ipv6? */ true); + ip_init(&ip6, 1); // ipv6enabled = 1 for (walker = server; (walker != NULL) && !done; walker = walker->ai_next) { switch (walker->ai_family) { -- cgit v1.2.3