socket-proxyd: Unchecked return value from library

CID 1237543 (#1 of 1): Unchecked return value from library
(CHECKED_RETURN)
This commit is contained in:
Susant Sahani 2014-10-09 19:01:11 +05:30 committed by David Herrmann
parent ee3a5027f7
commit 25dbe4f50f
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ static int connection_create_pipes(Connection *c, int buffer[2], size_t *sz) {
return -errno;
}
fcntl(buffer[0], F_SETPIPE_SZ, BUFFER_SIZE);
(void) fcntl(buffer[0], F_SETPIPE_SZ, BUFFER_SIZE);
r = fcntl(buffer[0], F_GETPIPE_SZ);
if (r < 0) {