From 6c2ea907e91019a219ca60b2639182d262ea98a4 Mon Sep 17 00:00:00 2001 From: "Tux3 / Mlkj / !Lev.uXFMLA" Date: Wed, 10 Sep 2014 19:36:51 +0200 Subject: [PATCH] Remove unused variable in handle_sendnodes --- toxcore/group_chats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toxcore/group_chats.c b/toxcore/group_chats.c index 77fa6acd..949ec53a 100644 --- a/toxcore/group_chats.c +++ b/toxcore/group_chats.c @@ -469,7 +469,7 @@ static int handle_sendnodes(Group_Chat *chat, IP_Port source, int peernum, const } } - int ok = add_closepeer(chat, chat->group[peernum].client_id, source); + add_closepeer(chat, chat->group[peernum].client_id, source); return 0; }