diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2017-05-04 22:36:40 +0200 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2017-05-04 22:37:34 +0200 |
commit | 79bb0afddb4a59033b82a9a55acf317e85f57e3c (patch) | |
tree | 6e2d6b9653b6af3f124c9de1eebdb92e5209604d /tests/server/sockfilt.c | |
parent | 4032c5da8473fc7d55e9a96471b697c62663c194 (diff) | |
download | curl-79bb0afddb4a59033b82a9a55acf317e85f57e3c.tar.gz |
sockfilt.c: shortened too long line
Diffstat (limited to 'tests/server/sockfilt.c')
-rw-r--r-- | tests/server/sockfilt.c | 3 |
1 files changed, 2 insertions, 1 deletions
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"); |