changeset 30977:718c16d7c6c9

Fix this inconsequential compile warning: disco.c: In function ¡Æjabber_disco_server_items_result_cb¡Ç: disco.c:602: warning: unused variable ¡Ænode¡Ç
author Mark Doliner <mark@kingant.net>
date Mon, 13 Sep 2010 09:20:18 +0000
parents 9af193ee13b7
children 277451b94288
files libpurple/protocols/jabber/disco.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/jabber/disco.c	Fri Sep 10 08:52:09 2010 +0000
+++ b/libpurple/protocols/jabber/disco.c	Mon Sep 13 09:20:18 2010 +0000
@@ -599,7 +599,7 @@
 	for(child = xmlnode_get_child(query, "item"); child;
 			child = xmlnode_get_next_twin(child)) {
 		JabberIq *iq;
-		const char *jid, *node;
+		const char *jid;
 
 		if(!(jid = xmlnode_get_attrib(child, "jid")))
 			continue;