diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 11:08:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-19 00:06:11 +0200 |
commit | fa5c79b4c62e1e1c53b36f79947d2cba7e3db4fa (patch) | |
tree | 352644ced1cb3bf926eb5b2cbe167c6d56774ccf /helpcompiler/source | |
parent | 1dc747590bb5fbd06411efc53589f3702cc992be (diff) |
cid#1448441 Unchecked return value
Change-Id: I97f6ad2bd0a6d838871cfb9ff54f2e654d6abfd0
Reviewed-on: https://gerrit.libreoffice.org/75893
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'helpcompiler/source')
-rw-r--r-- | helpcompiler/source/HelpIndexer_main.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpcompiler/source/HelpIndexer_main.cxx b/helpcompiler/source/HelpIndexer_main.cxx index 0919e89eb004..3ad47bbf7a28 100644 --- a/helpcompiler/source/HelpIndexer_main.cxx +++ b/helpcompiler/source/HelpIndexer_main.cxx @@ -69,7 +69,7 @@ int main(int argc, char **argv) OUString cwd; osl_getProcessWorkingDir(&cwd.pData); - osl::File::getAbsoluteFileURL(cwd, sDir, sDir); + (void)osl::File::getAbsoluteFileURL(cwd, sDir, sDir); HelpIndexer indexer( OUString(lang.c_str(), lang.size(), osl_getThreadTextEncoding()), |