Fix line which was too long

This commit is contained in:
Erik van der Kouwe 2009-12-04 17:49:20 +00:00
parent 5427ab41c8
commit 09939b454e

View file

@ -95,7 +95,9 @@ static int _tcp_getsockopt(int socket, int level, int option_name,
} }
if (level == SOL_SOCKET && option_name == SO_RCVBUF) 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); getsockopt_copy(&i, sizeof(i), option_value, option_len);
return 0; return 0;
} }