summaryrefslogtreecommitdiff
path: root/toxcore/group.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-18 11:27:14 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-18 11:27:14 +0100
commitb6db1dba9ac1c511a2697837e2d119bd2aef39a2 (patch)
tree5a11290472995c72a46945d1f647720473eb7832 /toxcore/group.h
parentf41b010e9b9459295bd8e030159a27db463cde33 (diff)
Make internal chat list function take uint32_t* as well.
The public one already does this, and the internal one actually assigns `uint32_t`s.
Diffstat (limited to 'toxcore/group.h')
-rw-r--r--toxcore/group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/group.h b/toxcore/group.h
index fc7629f3..7e7d7050 100644
--- a/toxcore/group.h
+++ b/toxcore/group.h
@@ -321,7 +321,7 @@ uint32_t count_chatlist(Group_Chats *g_c);
321 * Otherwise, returns the number of elements copied. 321 * Otherwise, returns the number of elements copied.
322 * If the array was too small, the contents 322 * If the array was too small, the contents
323 * of out_list will be truncated to list_size. */ 323 * of out_list will be truncated to list_size. */
324uint32_t copy_chatlist(Group_Chats *g_c, int32_t *out_list, uint32_t list_size); 324uint32_t copy_chatlist(Group_Chats *g_c, uint32_t *out_list, uint32_t list_size);
325 325
326/* return the type of groupchat (GROUPCHAT_TYPE_) that groupnumber is. 326/* return the type of groupchat (GROUPCHAT_TYPE_) that groupnumber is.
327 * 327 *