diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-03 18:04:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-03 18:04:20 +0100 |
commit | b40dcdf4f5a03b71fe9e45f8f24fcaf25fd2febf (patch) | |
tree | e24f81e83f78c3ceab83a30840a257258e4cd4fd /bridges | |
parent | d83328b233f51d4a70bfeaae90129a68dccf825b (diff) |
-Werror=unused-parameter
Change-Id: I4dfa96b8ea2684969d9eeecfd88136742ce2d4a1
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/jni_uno/jni_uno2java.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/jni_uno/jni_uno2java.cxx b/bridges/source/jni_uno/jni_uno2java.cxx index 6ca7741ae528..2465df3291cd 100644 --- a/bridges/source/jni_uno/jni_uno2java.cxx +++ b/bridges/source/jni_uno/jni_uno2java.cxx @@ -527,7 +527,7 @@ void SAL_CALL UNO_proxy_free( uno_ExtEnvironment * env, void * proxy ) UNO_proxy const * that = reinterpret_cast< UNO_proxy const * >( proxy ); Bridge const * bridge = that->m_bridge; - assert(env == bridge->m_uno_env); + assert(env == bridge->m_uno_env); (void) env; SAL_INFO("bridges", "freeing binary uno proxy: " << that->m_oid); try |