Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
86e78574
Commit
86e78574
authored
Jan 20, 2016
by
Brieuc Viel
Browse files
Fix typo in JNI
parent
33be9d61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
coreapi/linphonecore_jni.cc
coreapi/linphonecore_jni.cc
+1
-1
No files found.
coreapi/linphonecore_jni.cc
View file @
86e78574
...
...
@@ -6809,7 +6809,7 @@ extern "C" jobjectArray Java_org_linphone_core_LinphoneConferenceImpl_getPartici
return
jaddr_list
;
}
extern "C" jint Java_org_linphone_core_LinphoneConferen
t
eImpl_removeParticipant(JNIEnv *env, jobject thiz, jlong pconference, jobject uri) {
extern
"C"
jint
Java_org_linphone_core_LinphoneConferen
c
eImpl_removeParticipant
(
JNIEnv
*
env
,
jobject
thiz
,
jlong
pconference
,
jobject
uri
)
{
jfieldID
native_ptr_attr
=
env
->
GetFieldID
(
env
->
GetObjectClass
(
uri
),
"nativePtr"
,
"J"
);
LinphoneAddress
*
addr
=
(
LinphoneAddress
*
)
env
->
GetLongField
(
uri
,
native_ptr_attr
);
return
linphone_conference_remove_participant
((
LinphoneConference
*
)
pconference
,
addr
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment