diff src/protocols/irc/dcc_send.c @ 10388:088633feb846

[gaim-migrate @ 11615] this makes gcc shut up about some warnings committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 16 Dec 2004 03:50:54 +0000
parents 1a91e814e9d8
children 761822c6f7ca
line wrap: on
line diff
--- a/src/protocols/irc/dcc_send.c	Thu Dec 16 02:51:14 2004 +0000
+++ b/src/protocols/irc/dcc_send.c	Thu Dec 16 03:50:54 2004 +0000
@@ -194,7 +194,7 @@
 
 		xd->rxlen -= 4;
 		if (xd->rxlen) {
-			char *tmp = g_memdup(xd->rxqueue + 4, xd->rxlen);
+			unsigned char *tmp = g_memdup(xd->rxqueue + 4, xd->rxlen);
 			g_free(xd->rxqueue);
 			xd->rxqueue = tmp;
 		} else {