diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-08-09 13:09:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-10 12:13:27 +0100 |
commit | 85e14be20f1ba961ee5f5014a845e044ce8db39b (patch) | |
tree | a8f86ce639c4efd791e3d9c9efdd5e18cb7ecf64 /store | |
parent | 058c924c9385d003eefa728be7b23b2effd73913 (diff) |
cppcheck: redundantPointerOp
Change-Id: I0101893f5e8b65fb473a321e6169c3b610b33e60
Diffstat (limited to 'store')
-rw-r--r-- | store/source/store.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/store/source/store.cxx b/store/source/store.cxx index 04b9cc1c6666..a7c987574705 100644 --- a/store/source/store.cxx +++ b/store/source/store.cxx @@ -164,7 +164,7 @@ storeError SAL_CALL store_openFile ( xManager->acquire(); - *phFile = static_cast<storeFileHandle>(&(*xManager)); + *phFile = xManager.get(); return store_E_None; } |