From db172fe425634b7d784ae1d5af6d88b96b4e747e Mon Sep 17 00:00:00 2001 From: vda Date: Mon, 27 Nov 2006 16:49:55 +0000 Subject: style cleanup: return(a) -> return a, part 2 git-svn-id: svn://busybox.net/trunk/busybox@16691 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- docs/ipv4_ipv6.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/ipv4_ipv6.txt b/docs/ipv4_ipv6.txt index 76d8279c1..e83db0dbd 100644 --- a/docs/ipv4_ipv6.txt +++ b/docs/ipv4_ipv6.txt @@ -175,7 +175,7 @@ Modified IPv6-aware C code: (void) fprintf(stderr, "getaddrinfo: %s for host %s service %s\n", gai_strerror(error), hostname, servicename); - return (-1); + return -1; } /* Try all returned addresses until one works */ for (aip = res; aip != NULL; aip = aip->ai_next) { @@ -187,7 +187,7 @@ Modified IPv6-aware C code: if (sock == -1) { perror("socket"); freeaddrinfo(res); - return (-1); + return -1; } /* Connect to the host. */ -- cgit v1.2.3-55-g6feb