]> granicus.if.org Git - curl/commitdiff
sockfilt.c: shortened too long line
authorDan Fandrich <dan@coneharvesters.com>
Thu, 4 May 2017 20:36:40 +0000 (22:36 +0200)
committerDan Fandrich <dan@coneharvesters.com>
Thu, 4 May 2017 20:37:34 +0000 (22:37 +0200)
tests/server/sockfilt.c

index 926784ff46ce192077cad0604031b96aa3b13abf..42071a5bc421b563f12a4400fbdbf30315bdee07 100644 (file)
@@ -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");