From 03b55cde1a98b02f9019f068340094b5062857d1 Mon Sep 17 00:00:00 2001 From: sudden6 Date: Mon, 19 Feb 2018 22:58:03 +0100 Subject: make groupnumber uint32_t fixes #606 --- toxcore/tox.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'toxcore/tox.c') 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) void tox_callback_conference_namelist_change(Tox *tox, tox_conference_namelist_change_cb *callback) { Messenger *m = tox; - g_callback_group_namelistchange((Group_Chats *)m->conferences_object, (void (*)(struct Messenger *, int, int, uint8_t, + g_callback_group_namelistchange((Group_Chats *)m->conferences_object, (void (*)(struct Messenger *, uint32_t, uint32_t, + uint8_t, void *))callback); } -- cgit v1.2.3