mirror of
https://github.com/curl/curl.git
synced 2026-07-23 20:37:16 +03:00
sockfilt.c: shortened too long line
This commit is contained in:
parent
4032c5da84
commit
79bb0afddb
1 changed files with 2 additions and 1 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue