diff pidgin/gtkft.c @ 17593:6d3d7ee05b06

These casts were causing warnings for Stu but not me. But they don't accomplish anything, so eradicate them
author Mark Doliner <mark@kingant.net>
date Mon, 11 Jun 2007 01:02:18 +0000
parents 2c425e60fb1d
children 40d51793f2d7
line wrap: on
line diff
--- a/pidgin/gtkft.c	Sun Jun 10 22:22:36 2007 +0000
+++ b/pidgin/gtkft.c	Mon Jun 11 01:02:18 2007 +0000
@@ -250,8 +250,8 @@
 
 	status = g_strdup_printf("%d%% (%" G_GSIZE_FORMAT " of %" G_GSIZE_FORMAT " bytes)",
 							 (int)(purple_xfer_get_progress(xfer)*100),
-							 (unsigned long)purple_xfer_get_bytes_sent(xfer),
-							 (unsigned long)purple_xfer_get_size(xfer));
+							 purple_xfer_get_bytes_sent(xfer),
+							 purple_xfer_get_size(xfer));
 
 	if (purple_xfer_is_completed(xfer)) {