summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-18 10:20:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-18 21:16:52 +0200
commitfbaf0ccbf43ec3ed320c56a2bff4d7e8e59fb132 (patch)
tree1eda548c538f75961f2b396f3547df2386250ebd /tools
parent034da04b16292a8a967340499832af23ec479bdc (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.cxx2
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()));