1
0
mirror of https://github.com/Tha14/toxic.git synced 2026-01-27 06:23:16 +01:00

Use correct integer types to fix groupchat peer scrolling bug

This commit is contained in:
jfreegman
2019-03-26 23:05:24 -04:00
parent 2e39bee05a
commit 2cbe8fa880
2 changed files with 8 additions and 8 deletions

View File

@@ -46,10 +46,10 @@ typedef struct {
time_t start_time;
GroupPeer *peer_list;
size_t max_idx;
uint32_t max_idx;
char *name_list;
size_t num_peers;
uint32_t num_peers;
} GroupChat;