diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 10:20:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 21:16:52 +0200 |
commit | fbaf0ccbf43ec3ed320c56a2bff4d7e8e59fb132 (patch) | |
tree | 1eda548c538f75961f2b396f3547df2386250ebd /tools | |
parent | 034da04b16292a8a967340499832af23ec479bdc (diff) |
cid#1448224 Unchecked return value
Change-Id: Ie13b8b8f865e44f3746fdf79bf0b1b2cec2aba1d
Reviewed-on: https://gerrit.libreoffice.org/75845
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/strmunx.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx index 4ba6da6dfe1b..152ed9b10274 100644 --- a/tools/source/stream/strmunx.cxx +++ b/tools/source/stream/strmunx.cxx @@ -63,7 +63,7 @@ InternalStreamLock::InternalStreamLock( m_nEndPos( nEnd ), m_pStream( pStream ) { - osl::DirectoryItem::get( m_pStream->GetFileName(), m_aItem ); + (void)osl::DirectoryItem::get( m_pStream->GetFileName(), m_aItem ); #if OSL_DEBUG_LEVEL > 1 OString aFileName(OUStringToOString(m_pStream->GetFileName(), osl_getThreadTextEncoding())); |