summaryrefslogtreecommitdiffstats
path: root/sys/geom
diff options
context:
space:
mode:
authorthompsa <thompsa@FreeBSD.org>2008-02-11 09:20:01 +0000
committerthompsa <thompsa@FreeBSD.org>2008-02-11 09:20:01 +0000
commit25bc946ffc09644d504fd133d199efc2b083459a (patch)
tree980b7a5137a19dca37194b45b1f207114150f805 /sys/geom
parent84c4c89cc36cbb3d064ae4d21e0055a7356d52ff (diff)
downloadFreeBSD-src-25bc946ffc09644d504fd133d199efc2b083459a.zip
FreeBSD-src-25bc946ffc09644d504fd133d199efc2b083459a.tar.gz
Unbreak build, size_t is larger on 64bit platforms.
Diffstat (limited to 'sys/geom')
-rw-r--r--sys/geom/lvm/g_lvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/lvm/g_lvm.c b/sys/geom/lvm/g_lvm.c
index b566e08..33f226f 100644
--- a/sys/geom/lvm/g_lvm.c
+++ b/sys/geom/lvm/g_lvm.c
@@ -264,7 +264,7 @@ g_lvm_start(struct bio *bp)
+ in_chunk_offset + sg->sg_pvoffset;
}
- KASSERT(pv != NULL, ("Can't find PV for chunk %d",
+ KASSERT(pv != NULL, ("Can't find PV for chunk %zu",
chunk_index));
cb->bio_to = pv->pv_gprov;
OpenPOWER on IntegriCloud