summaryrefslogtreecommitdiff
path: root/toxcore/tox.c
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore/tox.c')
-rw-r--r--toxcore/tox.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toxcore/tox.c b/toxcore/tox.c
index c3bcb652..6ca52604 100644
--- a/toxcore/tox.c
+++ b/toxcore/tox.c
@@ -1106,7 +1106,8 @@ void tox_callback_conference_title(Tox *tox, tox_conference_title_cb *callback)
1106void tox_callback_conference_namelist_change(Tox *tox, tox_conference_namelist_change_cb *callback) 1106void tox_callback_conference_namelist_change(Tox *tox, tox_conference_namelist_change_cb *callback)
1107{ 1107{
1108 Messenger *m = tox; 1108 Messenger *m = tox;
1109 g_callback_group_namelistchange((Group_Chats *)m->conferences_object, (void (*)(struct Messenger *, int, int, uint8_t, 1109 g_callback_group_namelistchange((Group_Chats *)m->conferences_object, (void (*)(struct Messenger *, uint32_t, uint32_t,
1110 uint8_t,
1110 void *))callback); 1111 void *))callback);
1111} 1112}
1112 1113