mirror of
https://github.com/curl/curl.git
synced 2025-01-30 14:22:33 +08:00
sockfilt.c: shortened too long line
This commit is contained in:
parent
4032c5da84
commit
79bb0afddb
@ -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…
Reference in New Issue
Block a user