diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/generic/app/saldata.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/app/saldata.cxx b/vcl/unx/generic/app/saldata.cxx index bcb04d0bcd51..04360e2fdf35 100644 --- a/vcl/unx/generic/app/saldata.cxx +++ b/vcl/unx/generic/app/saldata.cxx @@ -367,12 +367,12 @@ SalXLib::SalXLib() 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); } // insert [0] into read descriptor set. |