helpcompiler/source/HelpIndexer_main.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit fa5c79b4c62e1e1c53b36f79947d2cba7e3db4fa Author: Caolán McNamara <[email protected]> AuthorDate: Thu Jul 18 11:08:19 2019 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Fri Jul 19 00:06:11 2019 +0200 cid#1448441 Unchecked return value Change-Id: I97f6ad2bd0a6d838871cfb9ff54f2e654d6abfd0 Reviewed-on: https://gerrit.libreoffice.org/75893 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> 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()), _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
