diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-12-12 09:37:17 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-12-12 09:47:40 +0000 |
commit | cc777d31c1508ef74551532b553374f5db87bca9 (patch) | |
tree | e2dcf81f260eb1bcf891b8703d496f0480409a79 /desktop/source/splash | |
parent | d6b094bc8f23cbdad4da646320f3e6809fa42c5d (diff) |
coverity#1397048 Unchecked return value
Change-Id: Ie33ef6565cadcddb59c1d78a63aec666e8693f87
Diffstat (limited to 'desktop/source/splash')
-rw-r--r-- | desktop/source/splash/splash.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx index a7385ae5bb7a..13c59c89c7dc 100644 --- a/desktop/source/splash/splash.cxx +++ b/desktop/source/splash/splash.cxx @@ -537,7 +537,7 @@ void SplashScreen::SetScreenBitmap(BitmapEx &rBitmap) if (Application::LoadBrandBitmap (aResBuf.makeStringAndClear().getStr(), rBitmap)) return; - Application::LoadBrandBitmap ("intro", rBitmap); + (void)Application::LoadBrandBitmap ("intro", rBitmap); } void SplashScreen::determineProgressRatioValues( |