From 3c9b9b7cefd6d17ee746c2fe8f3bdd9bd8699e81 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Tue, 9 Oct 2012 16:34:40 +0200 Subject: [PATCH] Fix function definition. --- LinphoneCallImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LinphoneCallImpl.java b/LinphoneCallImpl.java index cf471f52c..7e39cebc7 100644 --- a/LinphoneCallImpl.java +++ b/LinphoneCallImpl.java @@ -155,7 +155,7 @@ class LinphoneCallImpl implements LinphoneCall { return isAuthenticationTokenVerified(nativePtr); } - private native boolean setAuthenticationTokenVerified(long nativePtr, boolean verified); + private native void setAuthenticationTokenVerified(long nativePtr, boolean verified); public void setAuthenticationTokenVerified(boolean verified){ setAuthenticationTokenVerified(nativePtr, verified); }