summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-18 10:32:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-18 21:16:19 +0200
commit034da04b16292a8a967340499832af23ec479bdc (patch)
treef252b8ced92f3d05b06c2b2e517ec37a713424e6 /sfx2
parent02b42f2825693454a4154d0e17a1dbcd3b4a66c6 (diff)
cid#1448294 Unchecked return value
Change-Id: Iee0153a00df72cf9353d2e40ff02f81f96522afe Reviewed-on: https://gerrit.libreoffice.org/75873 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/safemode/safemode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/safemode/safemode.cxx b/sfx2/source/safemode/safemode.cxx
index 6d8dcf981a4d..0b7b64446bf9 100644
--- a/sfx2/source/safemode/safemode.cxx
+++ b/sfx2/source/safemode/safemode.cxx
@@ -75,7 +75,7 @@ OUString SafeMode::getFilePath(const OUString& sFilename)
OUString aProfilePath;
FileBase::getSystemPathFromFileURL(url, aProfilePath);
- FileBase::getAbsoluteFileURL(url, sFilename, aProfilePath);
+ (void)FileBase::getAbsoluteFileURL(url, sFilename, aProfilePath);
return aProfilePath;
}