diff options
author | David Tardon <dtardon@redhat.com> | 2014-11-04 19:26:45 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-11-04 19:52:53 +0100 |
commit | 025da16223a28263059d9d02be276459dcc9ca75 (patch) | |
tree | ee2e87591a89514670855d646004505244a1a631 /store | |
parent | 2ba3fd5a1aa1623703defa3772b1e8a2a122ebcc (diff) |
coverity#1242933 unused value
Change-Id: I416144a4ccf2856ce85ab4b24a69958615276cb9
Diffstat (limited to 'store')
-rw-r--r-- | store/source/storpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/store/source/storpage.cxx b/store/source/storpage.cxx index baf8f740a466..b97a945e20ac 100644 --- a/store/source/storpage.cxx +++ b/store/source/storpage.cxx @@ -968,7 +968,7 @@ storeError OStorePageManager::rebuild ( { // Ordinary attributes. sal_uInt32 nAttrib = 0; - eErrCode = attrib (e.m_aKey, 0, e.m_nAttrib, nAttrib); + attrib (e.m_aKey, 0, e.m_nAttrib, nAttrib); } } } |