summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-01-26 12:05:10 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-01-26 12:05:10 +0000
commitd79c1e3c6eed70c221db8a82d061261d4835f618 (patch)
tree764468d59ca71de48ca6a377f0b0164ce4efe379 /desktop
parent7ed8b9e3a9685eb3b07c65b7f2912612c5c9e810 (diff)
coverity#1428612 silence reasonable 'Unchecked return value' warning
Change-Id: If22f31471e0d15b6523355a44938c864b074ac93
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/lib/init.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index dfff8646fef6..deba56c3eafc 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -3682,7 +3682,7 @@ static void preloadData()
std::cerr << "Preload languages\n";
// force load language singleton
SvtLanguageTable::HasLanguageType(LANGUAGE_SYSTEM);
- LanguageTag::isValidBcp47("foo", nullptr);
+ (void)LanguageTag::isValidBcp47("foo", nullptr);
}
static int lo_initialize(LibreOfficeKit* pThis, const char* pAppPath, const char* pUserProfileUrl)