From: Erik van der Kouwe Date: Fri, 4 Dec 2009 17:49:20 +0000 (+0000) Subject: Fix line which was too long X-Git-Tag: v3.1.6~169 X-Git-Url: http://zhaoyanbai.com/repos/migration?a=commitdiff_plain;h=09939b454e355d18b4c02e7133b5bde93337f193;p=minix.git Fix line which was too long --- diff --git a/lib/ip/getsockopt.c b/lib/ip/getsockopt.c index d40deddcc..dbf0ff2a7 100644 --- a/lib/ip/getsockopt.c +++ b/lib/ip/getsockopt.c @@ -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; }