diff libpurple/protocols/myspace/markup.c @ 31598:b1a6535f99d9

Get rid of a few other dead variables.
author Paul Aurich <paul@darkrain42.org>
date Wed, 11 May 2011 05:04:43 +0000
parents eb9edb1c36ac
children
line wrap: on
line diff
--- a/libpurple/protocols/myspace/markup.c	Wed May 11 05:00:06 2011 +0000
+++ b/libpurple/protocols/myspace/markup.c	Wed May 11 05:04:43 2011 +0000
@@ -600,7 +600,7 @@
 msim_convert_xmlnode(MsimSession *session, GString *out, xmlnode *root, MSIM_XMLNODE_CONVERT f, int nodes_processed)
 {
 	xmlnode *node;
-	gchar *begin, *inner, *end, *tmp;
+	gchar *begin, *end, *tmp;
 	int descended = nodes_processed;
 
 	if (!root || !root->name)
@@ -609,7 +609,7 @@
 	purple_debug_info("msim", "msim_convert_xmlnode: got root=%s\n",
 			root->name);
 
-	begin = inner = end = NULL;
+	begin = end = NULL;
 
 	if (descended == 0) /* We've not formatted this yet.. :) */
 		descended = f(session, root, &begin, &end); /* Get the value that our format function has already descended for us */