diff src/util.c @ 8907:00138e366ef8

[gaim-migrate @ 9677] " Fixes a few warnings on 64bit machines. Also fixes yahoo auth on 64bit machines which would have taken me awhile if marv didn't point me in the right direction. I've applied to my local 32bit copy and everything seems to be working fine." --Gary Kramlich committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 08 May 2004 23:34:30 +0000
parents ae3f33870550
children c34e4e6128f3
line wrap: on
line diff
--- a/src/util.c	Sat May 08 18:37:00 2004 +0000
+++ b/src/util.c	Sat May 08 23:34:30 2004 +0000
@@ -302,7 +302,8 @@
 
 	for (unencoded = cur = str; (encoded = cur = strstr(cur, "=?")); unencoded = cur) {
 		gboolean found_word = FALSE;
-		int i, num, len, dec_len;
+		int i, num, dec_len;
+		gsize len;
 		char *decoded, *converted;
 		char *tokens[3];