Signed/unsigned warning on 64 bit.

This commit is contained in:
Richard Jones
2010-03-31 13:19:34 +01:00
parent ce3a9c56b7
commit f42f2df8bc

View 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)",