changeset 12421:f71d6b79ec81

[gaim-migrate @ 14728] size_t is always unsigned (except perhaps on Unix systems before the introduction of ISO C, which we don't support). committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Thu, 08 Dec 2005 22:27:29 +0000
parents b7d77321b685
children fe42d9c111f9
files src/gtkft.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkft.c	Thu Dec 08 21:50:49 2005 +0000
+++ b/src/gtkft.c	Thu Dec 08 22:27:29 2005 +0000
@@ -199,8 +199,7 @@
 							 (unsigned long)gaim_xfer_get_bytes_sent(xfer),
 							 (unsigned long)gaim_xfer_get_size(xfer));
 
-	if (gaim_xfer_get_size(xfer) >= 0 &&
-		gaim_xfer_is_completed(xfer)) {
+	if (gaim_xfer_is_completed(xfer)) {
 
 		GdkPixbuf *pixbuf = NULL;