diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-19 09:59:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-19 13:00:44 +0100 |
commit | 9ce9e22f664b5db0e6c21ee50ba6467bc369dd0b (patch) | |
tree | 05d7da9728f0872e2612b585aef7fd498a58772d /desktop | |
parent | d785e039959d9274628488f7ef5b89af8445351e (diff) |
coverity#1371119 Unchecked return value
Change-Id: I6a39ee4aafe646c542f03c8548e1822837dfde5c
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/cmdlineargs.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/cmdlineargs.cxx b/desktop/source/app/cmdlineargs.cxx index f9a275876d2f..1211cafaa545 100644 --- a/desktop/source/app/cmdlineargs.cxx +++ b/desktop/source/app/cmdlineargs.cxx @@ -460,7 +460,7 @@ void CommandLineArgs::ParseCommandLine_Impl( Supplier& supplier ) // --display and its argument are handled "out of line" // in Unix-only desktop/unx/source/splashx.c and vcl/unx/*, // and just ignored here - supplier.next(&aArg); + (void)supplier.next(&aArg); } else if ( oArg == "convert-to" ) { |