changeset 17831: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 abc4dcd25c50
children 4c05f284253b 43be5361c4dc fb0b82b40f98
files pidgin/gtkft.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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)) {