diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-13 09:38:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-13 16:54:25 +0100 |
commit | 8ef09a9219249120a20e294dd4d987f0c5d01133 (patch) | |
tree | d9831573ee923e9ae60c6379fced2b4520c6b9bb | |
parent | 0f8f77630c3446950967382687f1ed6687f2c4eb (diff) |
coverity#704061 Unchecked return value
Change-Id: I460f258cb3b44949176561d397837184cd08bfbd
-rw-r--r-- | sw/source/filter/ww8/ww8scan.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx index f37715eb1e18..7d889bff3d43 100644 --- a/sw/source/filter/ww8/ww8scan.cxx +++ b/sw/source/filter/ww8/ww8scan.cxx @@ -4033,7 +4033,7 @@ long WW8PLCFx_Book::GetNoSprms( WW8_CP& rStart, WW8_CP& rEnd, sal_Int32& rLen ) return -1; } - pBook[nIsEnd]->Get( rStart, pData ); // query position + (void)pBook[nIsEnd]->Get( rStart, pData ); // query position return pBook[nIsEnd]->GetIdx(); } |