summaryrefslogtreecommitdiff
path: root/toxcore/tox.c
diff options
context:
space:
mode:
authorsudden6 <sudden6@gmx.at>2018-02-19 22:58:03 +0100
committersudden6 <sudden6@gmx.at>2018-02-20 20:58:54 +0100
commit03b55cde1a98b02f9019f068340094b5062857d1 (patch)
tree3fd16d56a9546e458d03a47d9e8e8fa68e0f9c16 /toxcore/tox.c
parentc4a734e30462d59d7f9bfe4a865b33936907e0d5 (diff)
make groupnumber uint32_t
fixes #606
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