diff options
Diffstat (limited to 'ratatox.c')
-rw-r--r-- | ratatox.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -112,7 +112,7 @@ struct friend { TAILQ_ENTRY(friend) entry; }; -static TAILQ_HEAD(friendhead, friend) friendhead; +static TAILQ_HEAD(friendhead, friend) friendhead = TAILQ_HEAD_INITIALIZER(friendhead); static Tox *tox; static void dataload(void); @@ -455,8 +455,6 @@ friendload(void) int n; char name[TOX_MAX_NAME_LENGTH + 1]; - TAILQ_INIT(&friendhead); - sz = tox_count_friendlist(tox); fids = malloc(sz); if (!fids) { |