From 1b0f4420c3402782fd6346351e300952d93fdd7d Mon Sep 17 00:00:00 2001 From: Stéphane Raimbault Date: Mon, 7 Jan 2013 14:19:06 +0100 Subject: [PATCH] Remove blank line from previous commit --- src/modbus-tcp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/modbus-tcp.c b/src/modbus-tcp.c index c38be50..e7b12cc 100644 --- a/src/modbus-tcp.c +++ b/src/modbus-tcp.c @@ -218,7 +218,8 @@ static int _modbus_tcp_set_ipv4_options(int s) return -1; } - /* If the OS does not offer SOCK_NONBLOCK, fall back to setting FIONBIO to make sockets non-blocking */ + /* If the OS does not offer SOCK_NONBLOCK, fall back to setting FIONBIO to + * make sockets non-blocking */ /* Do not care about the return value, this is optional */ #if !defined(SOCK_NONBLOCK) && defined(FIONBIO) #ifdef OS_WIN32 @@ -230,7 +231,7 @@ static int _modbus_tcp_set_ipv4_options(int s) ioctl(s, FIONBIO, &option); #endif #endif - + #ifndef OS_WIN32 /** * Cygwin defines IPTOS_LOWDELAY but can't handle that flag so it's -- libgit2 0.21.4