]> sjero.net Git - linphone/commitdiff
Fix typo in getRemoteUserAgent() method.
authorGhislain MARY <ghislain.mary@belledonne-communications.com>
Mon, 10 Dec 2012 08:41:49 +0000 (09:41 +0100)
committerGhislain MARY <ghislain.mary@belledonne-communications.com>
Mon, 10 Dec 2012 08:41:49 +0000 (09:41 +0100)
coreapi/linphonecore_jni.cc

index 12b1a22fe2d6c8467788ef8b4b56c5c9652bcb48..e6d4499771e3376e4502b2fa6fa146ba8bd61ae8 100644 (file)
@@ -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;