summaryrefslogtreecommitdiff
path: root/cppu/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-08 15:09:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-08 20:45:12 +0100
commit0fe035e366c9eeb72eaca9ca34ab876fc6154d01 (patch)
tree0ae75d94b22607d9ac2ea08299dc3ec8dcb1edd9 /cppu/source
parent54d068185e034323479bcacd544bab222642ad8e (diff)
coverity#982157 Unchecked return value
Change-Id: Ia6a1ee154254e7efc0d787ce92222e80fecfd04e
Diffstat (limited to 'cppu/source')
-rw-r--r--cppu/source/typelib/typelib.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index 7fb987b9c9a5..042bf197eaa8 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -2281,7 +2281,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_getByName(
{
// detruction of this type in progress (another thread!)
// no acces through this weak reference
- osl_atomic_decrement( &(*aIt).second->nRefCount );
+ (void)osl_atomic_decrement( &(*aIt).second->nRefCount );
}
}
}