From: Ghislain MARY Date: Tue, 9 Oct 2012 14:34:40 +0000 (+0200) Subject: Fix function definition. X-Git-Url: http://sjero.net/git/?p=linphone;a=commitdiff_plain;h=3c9b9b7cefd6d17ee746c2fe8f3bdd9bd8699e81 Fix function definition. --- diff --git a/LinphoneCallImpl.java b/LinphoneCallImpl.java index cf471f52..7e39cebc 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); }