From: Dan Fandrich Date: Thu, 4 May 2017 20:36:40 +0000 (+0200) Subject: sockfilt.c: shortened too long line X-Git-Tag: curl-7_54_1~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79bb0afddb4a59033b82a9a55acf317e85f57e3c;p=curl sockfilt.c: shortened too long line --- diff --git a/tests/server/sockfilt.c b/tests/server/sockfilt.c index 926784ff4..42071a5bc 100644 --- a/tests/server/sockfilt.c +++ b/tests/server/sockfilt.c @@ -405,7 +405,8 @@ static ssize_t fullwrite(int filedes, const void *buffer, size_t nbytes) ssize_t nwrite = 0; do { - wc = write(filedes, (const unsigned char *)buffer + nwrite, nbytes - nwrite); + wc = write(filedes, (const unsigned char *)buffer + nwrite, + nbytes - nwrite); if(got_exit_signal) { logmsg("signalled to die");