diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 13:14:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 15:37:57 +0000 |
commit | d8833c45de6f5d0341817590bf051bcbbfcd95db (patch) | |
tree | e5944bbcbd390526b14e8566c3f69d3f8ed53dab /sw | |
parent | 2196d1b7508e5e4da1be485c37adbd980f59b97f (diff) |
coverity#735336 Unchecked return value
Change-Id: Ic5bd2ecf827be68510877589b64305b5704d7488
Diffstat (limited to 'sw')
-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 cfe17cbf03d0..646c4eb53ea1 100644 --- a/sw/source/filter/ww8/ww8scan.cxx +++ b/sw/source/filter/ww8/ww8scan.cxx @@ -2989,7 +2989,7 @@ void WW8PLCFx_Fc_FKP::advance() pFkp->advance(); if( pFkp->Where() == WW8_FC_MAX ) - NewFkp(); + (void)NewFkp(); } sal_uInt16 WW8PLCFx_Fc_FKP::GetIstd() const |