mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-29 17:29:20 +00:00
Fix compilation issue with setState JNI method
This commit is contained in:
parent
c578cdcf6e
commit
52d3826a16
1 changed files with 1 additions and 1 deletions
|
|
@ -882,7 +882,7 @@ extern "C" void Java_org_linphone_core_LinphoneCallImpl_setState(JNIEnv* env,
|
|||
jstring message) {
|
||||
|
||||
const char* jmessage = env->GetStringUTFChars(message, NULL);
|
||||
linphone_call_set_state(call, state, jmessage);
|
||||
linphone_call_set_state((LinphoneCall*)call, (LinphoneCallState)state, jmessage);
|
||||
env->ReleaseStringUTFChars(message, jmessage);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue