diff options
| author | John Birrell <jb@FreeBSD.org> | 2007-11-18 03:17:56 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 2007-11-18 03:17:56 +0000 |
| commit | ea07ab3fd9a48fb6a6a486296e418a1e1ba0c17e (patch) | |
| tree | c53dd69c64e0bcfabaa074bfddfbecbb405a7e9e /sbin | |
| parent | 780e069c4934e79763ecf752a6069cc33739fbef (diff) | |
Notes
Diffstat (limited to 'sbin')
| -rw-r--r-- | sbin/geom/class/virstor/geom_virstor.c | 4 |
1 files 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) { |
