From b40dcdf4f5a03b71fe9e45f8f24fcaf25fd2febf Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 3 Dec 2013 18:04:20 +0100 Subject: [PATCH] -Werror=unused-parameter Change-Id: I4dfa96b8ea2684969d9eeecfd88136742ce2d4a1 --- bridges/source/jni_uno/jni_uno2java.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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