Fix signed/unsigned comparison compiler warning.

This commit is contained in:
John Birrell 2007-11-18 03:17:56 +00:00
parent 780e069c49
commit ea07ab3fd9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173721

View File

@ -343,7 +343,7 @@ virstor_label(struct gctl_req *req)
"%s: %s.", name, strerror(errno));
return;
}
if (msize < MAX(md.md_chunk_size*4, map_size))
if (msize < (off_t) MAX(md.md_chunk_size*4, map_size))
gctl_error(req, "Device %s is too small", name);
error = g_metadata_clear(name, NULL);
if (error != 0) {
@ -429,7 +429,7 @@ virstor_label(struct gctl_req *req)
if (verbose)
printf("(%u chunks) ", md.chunk_count);
/* Check to make sure last sector is unused */
if ((off_t)(md.chunk_count) * md.md_chunk_size > msize-ssize)
if ((off_t)(md.chunk_count * md.md_chunk_size) > msize-ssize)
md.chunk_count--;
md.chunk_next = 0;
if (i != 1) {