]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix line which was too long
authorErik van der Kouwe <erik@minix3.org>
Fri, 4 Dec 2009 17:49:20 +0000 (17:49 +0000)
committerErik van der Kouwe <erik@minix3.org>
Fri, 4 Dec 2009 17:49:20 +0000 (17:49 +0000)
lib/ip/getsockopt.c

index d40deddccc97bc7fb82d4a2f18e6dba5c226f5ab..dbf0ff2a7c7a8a35062184a4dd8a9aadab3d65ba 100644 (file)
@@ -95,7 +95,9 @@ static int _tcp_getsockopt(int socket, int level, int option_name,
        }
        if (level == SOL_SOCKET && option_name == SO_RCVBUF)
        {
-               i = 32 * 1024;  /* Receive buffer in the current implementation */
+               i = 32 * 1024;  /* Receive buffer in the current 
+                                * implementation 
+                                */
                getsockopt_copy(&i, sizeof(i), option_value, option_len);
                return 0;
        }