summaryrefslogtreecommitdiff
path: root/helpcompiler/source/HelpIndexer_main.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-18 11:08:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-19 00:06:11 +0200
commitfa5c79b4c62e1e1c53b36f79947d2cba7e3db4fa (patch)
tree352644ced1cb3bf926eb5b2cbe167c6d56774ccf /helpcompiler/source/HelpIndexer_main.cxx
parent1dc747590bb5fbd06411efc53589f3702cc992be (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/HelpIndexer_main.cxx')
-rw-r--r--helpcompiler/source/HelpIndexer_main.cxx2
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()),