Commit 79bb0afd authored by Dan Fandrich's avatar Dan Fandrich
Browse files

sockfilt.c: shortened too long line

parent 4032c5da
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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");