From 0849cfcffa9bd30bdb30469afdfce513a86c149c Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Mon, 10 Dec 2012 09:41:49 +0100 Subject: [PATCH] Fix typo in getRemoteUserAgent() method. --- coreapi/linphonecore_jni.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecore_jni.cc b/coreapi/linphonecore_jni.cc index 12b1a22fe..e6d449977 100644 --- a/coreapi/linphonecore_jni.cc +++ b/coreapi/linphonecore_jni.cc @@ -1488,7 +1488,7 @@ extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteAddress( JNIEn return (jlong)linphone_call_get_remote_address((LinphoneCall*)ptr); } -extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_get_remoteUserAgent(JNIEnv *env, jobject thiz, jlong ptr) { +extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getRemoteUserAgent(JNIEnv *env, jobject thiz, jlong ptr) { LinphoneCall *call = (LinphoneCall *)ptr; jstring jvalue = env->NewStringUTF(linphone_call_get_remote_user_agent(call)); return jvalue;