1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

cleanup: drop unused val

This commit is contained in:
Zdenek Kabelac 2015-02-17 13:39:26 +01:00
parent cd1a76a492
commit cb144c0097

View File

@ -51,10 +51,7 @@ int buffer_read(int fd, struct buffer *buffer) {
return 0; /* we should never encounter EOF here */ return 0; /* we should never encounter EOF here */
} else if (result < 0 && ( errno == EAGAIN || errno == EWOULDBLOCK || } else if (result < 0 && ( errno == EAGAIN || errno == EWOULDBLOCK ||
errno == EINTR || errno == EIO)) { errno == EINTR || errno == EIO)) {
struct timeval tval;
fd_set in; fd_set in;
tval.tv_sec = 1;
tval.tv_usec = 0;
FD_ZERO(&in); FD_ZERO(&in);
FD_SET(fd, &in); FD_SET(fd, &in);
/* ignore the result, this is just a glorified sleep */ /* ignore the result, this is just a glorified sleep */
@ -83,10 +80,7 @@ int buffer_write(int fd, const struct buffer *buffer) {
written += result; written += result;
else if (result < 0 && ( errno == EAGAIN || errno == EWOULDBLOCK || else if (result < 0 && ( errno == EAGAIN || errno == EWOULDBLOCK ||
errno == EINTR || errno == EIO)) { errno == EINTR || errno == EIO)) {
struct timeval tval;
fd_set out; fd_set out;
tval.tv_sec = 1;
tval.tv_usec = 0;
FD_ZERO(&out); FD_ZERO(&out);
FD_SET(fd, &out); FD_SET(fd, &out);
/* ignore the result, this is just a glorified sleep */ /* ignore the result, this is just a glorified sleep */