summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-10-05 05:03:26 +0000
committerRoland McGrath <roland@gnu.org>1994-10-05 05:03:26 +0000
commit5ffaeaeb766fb7867af1e7bddbc3d84c6fee106c (patch)
tree7415ef4e49c32e5d2465cd7abc0226a0e90b3a93
parent81c49f6e6e81beb7fb438802fb8ebc6d06313662 (diff)
downloadglibc-5ffaeaeb766fb7867af1e7bddbc3d84c6fee106c.tar.gz
glibc-5ffaeaeb766fb7867af1e7bddbc3d84c6fee106c.tar.xz
glibc-5ffaeaeb766fb7867af1e7bddbc3d84c6fee106c.zip
(main): Break up a line to avoid overfull hbox.
-rw-r--r--manual/examples/inetsrv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/manual/examples/inetsrv.c b/manual/examples/inetsrv.c
index 5bc19fe850..bd86e80f36 100644
--- a/manual/examples/inetsrv.c
+++ b/manual/examples/inetsrv.c
@@ -75,7 +75,9 @@ main (void)
 		/* Connection request on original socket. */
 		int new;
 		size = sizeof (clientname);
-		new = accept (sock, (struct sockaddr *) &clientname, &size);
+		new = accept (sock,
+			      (struct sockaddr *) &clientname,
+			      &size);
 		if (new < 0)
 		  {
 		    perror ("accept");