diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-25 16:35:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-25 16:56:28 +0100 |
commit | 392dc0bad20a8088a5c3e3746645ef3951fa859f (patch) | |
tree | 3794f327d1a119bb3cb06d9f1abe5e890f4d436a /vcl/headless | |
parent | 33492060dd97d625ff7bf5660218306363d118d0 (diff) |
coverity#735342 silence Unchecked return value from library
Change-Id: I95f0d81a741fc684468c720390b43dc9d7b585f9
Diffstat (limited to 'vcl/headless')
-rw-r--r-- | vcl/headless/svpinst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx index 4744251bdf62..8efbcda84fb4 100644 --- a/vcl/headless/svpinst.cxx +++ b/vcl/headless/svpinst.cxx @@ -91,12 +91,12 @@ SvpSalInstance::SvpSalInstance( SalYieldMutex *pMutex ) : if ((flags = fcntl (m_pTimeoutFDS[0], F_GETFL)) != -1) { flags |= O_NONBLOCK; - fcntl (m_pTimeoutFDS[0], F_SETFL, flags); + (void)fcntl(m_pTimeoutFDS[0], F_SETFL, flags); } if ((flags = fcntl (m_pTimeoutFDS[1], F_GETFL)) != -1) { flags |= O_NONBLOCK; - fcntl (m_pTimeoutFDS[1], F_SETFL, flags); + (void)fcntl(m_pTimeoutFDS[1], F_SETFL, flags); } } m_aEventGuard = osl_createMutex(); |