diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-27 20:58:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 10:31:27 +0000 |
commit | e7d9a137ca1cdf4f403d94166e52de31f1119a2c (patch) | |
tree | 58f1b9984637aaca39b3578b10e3528b6b665f38 /desktop | |
parent | 3130f06bb5a07a6fc31911a59666e0ce3aedf162 (diff) |
coverity#982159 silence Unchecked return value from library
Change-Id: I92ff023ea2a8503d7c4799921c644aa011685ae2
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/unx/source/start.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c index 13be4a46cfb6..5fb0dc3ee02e 100644 --- a/desktop/unx/source/start.c +++ b/desktop/unx/source/start.c @@ -370,7 +370,7 @@ connect_pipe( rtl_uString *pPipePath ) if ( ( fd = socket( AF_UNIX, SOCK_STREAM, 0 ) ) < 0 ) return fd; - fcntl( fd, F_SETFD, FD_CLOEXEC ); + (void)fcntl( fd, F_SETFD, FD_CLOEXEC ); addr.sun_family = AF_UNIX; strncpy( addr.sun_path, rtl_string_getStr( pPipeStr ), sizeof( addr.sun_path ) - 1 ); |