From ea07ab3fd9a48fb6a6a486296e418a1e1ba0c17e Mon Sep 17 00:00:00 2001 From: John Birrell Date: Sun, 18 Nov 2007 03:17:56 +0000 Subject: [PATCH] Fix signed/unsigned comparison compiler warning. --- sbin/geom/class/virstor/geom_virstor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/geom/class/virstor/geom_virstor.c b/sbin/geom/class/virstor/geom_virstor.c index 6b29bbe16fc5..b1d2cb450a8e 100644 --- a/sbin/geom/class/virstor/geom_virstor.c +++ b/sbin/geom/class/virstor/geom_virstor.c @@ -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) {