svn commit: trunk/busybox/libbb

vodz at busybox.net vodz at busybox.net
Tue Jan 31 12:12:17 UTC 2006


Author: vodz
Date: 2006-01-31 04:12:15 -0800 (Tue, 31 Jan 2006)
New Revision: 13757

Log:
avoid signed<->unsigned warning

Modified:
   trunk/busybox/libbb/copyfd.c


Changeset:
Modified: trunk/busybox/libbb/copyfd.c
===================================================================
--- trunk/busybox/libbb/copyfd.c	2006-01-31 12:06:57 UTC (rev 13756)
+++ trunk/busybox/libbb/copyfd.c	2006-01-31 12:12:15 UTC (rev 13757)
@@ -57,7 +57,7 @@
 out:
 	RELEASE_CONFIG_BUFFER(buffer);
 
-	return status ? status : total;
+	return status ? status : (ssize_t)total;
 }
 
 




More information about the busybox-cvs mailing list