diff src/protocols/yahoo/yahoo.c @ 8125:abbfed0b0050

[gaim-migrate @ 8829] there's a right way and a wrong way to kill off warnings committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 16 Jan 2004 17:13:20 +0000
parents 52089b055c12
children d5dbb02d2837
line wrap: on
line diff
--- a/src/protocols/yahoo/yahoo.c	Fri Jan 16 16:13:22 2004 +0000
+++ b/src/protocols/yahoo/yahoo.c	Fri Jan 16 17:13:20 2004 +0000
@@ -880,16 +880,17 @@
 static char *yahoo_decode(const char *text)
 {
 	char *converted;
-	char *p, *n, *new, *end;
+	char *n, *new;
+	const char *end, *p;
 	int i;
-	
+
 	n = new = g_malloc(strlen (text) + 1);
 	end = text + strlen(text);
 
-	for (p = (char *)text; p < end; p++, n++) {
+	for (p = text; p < end; p++, n++) {
 		if (*p == '\\') {
 			sscanf(p + 1, "%3o\n", &i);
-			*n = (char)i;
+			*n = i;
 			p += 3;
 		}
 		else
@@ -897,7 +898,7 @@
 	}
 
 	*n = '\0';
-	
+
 	converted = g_convert(new, n - new, OUT_CHARSET, "iso-8859-1", NULL, NULL, NULL);
 	g_free(new);