diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-12 15:09:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-12 20:25:22 +0000 |
commit | 0a7b110d9ed617c9a8be15736709fe54ce18038d (patch) | |
tree | 6dfee201c0650fdfe062989400ff704fd2acba55 | |
parent | 22681a96efc8c34b623679f59899ba76b2cd580e (diff) |
coverity#1242813 Unused value
and
coverity#1242867 Unused value
Change-Id: I8ad069a5a84b97e956cafcd925fd733fb5ed9b2e
-rw-r--r-- | store/source/storpage.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/store/source/storpage.cxx b/store/source/storpage.cxx index b97a945e20ac..5599eef9a5c4 100644 --- a/store/source/storpage.cxx +++ b/store/source/storpage.cxx @@ -919,13 +919,13 @@ storeError OStorePageManager::rebuild ( continue; // Write 'Destination' data page. @@@ READONLY @@@ - eErrCode = aDstPage.write (i, aData, *this); + (void) aDstPage.write (i, aData, *this); } } // Update 'Destination' directory page. aDstPage.dataLength (nDataLen); - eErrCode = base::saveObjectAt (aDstPage, aDstPage.location()); + (void) base::saveObjectAt (aDstPage, aDstPage.location()); } // Save directory scan results. |