summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-13 09:38:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-13 16:54:25 +0100
commit8ef09a9219249120a20e294dd4d987f0c5d01133 (patch)
treed9831573ee923e9ae60c6379fced2b4520c6b9bb
parent0f8f77630c3446950967382687f1ed6687f2c4eb (diff)
coverity#704061 Unchecked return value
Change-Id: I460f258cb3b44949176561d397837184cd08bfbd
-rw-r--r--sw/source/filter/ww8/ww8scan.cxx2
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();
}