diff options
Diffstat (limited to 'tests')
-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"); |