Signed/unsigned warning on 64 bit.
authorRichard Jones <rjones@redhat.com>
Wed, 31 Mar 2010 12:19:34 +0000 (13:19 +0100)
committerRichard Jones <rjones@redhat.com>
Wed, 7 Apr 2010 11:05:46 +0000 (12:05 +0100)
daemon/zero.c

index 6e62e15..df4ebd6 100644 (file)
@@ -74,7 +74,7 @@ do_zero_device (const char *device)
   memset (buf, 0, sizeof buf);
 
   while (size > 0) {
-    size_t n = size > sizeof buf ? sizeof buf : size;
+    size_t n = (size_t) size > sizeof buf ? sizeof buf : (size_t) size;
     ssize_t r = write (fd, buf, n);
     if (r == -1) {
       reply_with_perror ("write: %s (with %" PRId64 " bytes left to write)",