summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_blist.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-05-18 23:46:04 +0000
committerjhb <jhb@FreeBSD.org>2002-05-18 23:46:04 +0000
commit7df8f89185018727f9f8972d619d5303546ddacd (patch)
tree2c7af51e45ff56dafeb29d351f43fe1e5461a00a /sys/kern/subr_blist.c
parent807fc44381c5046d8c56e3d3a0bfedaf57959d94 (diff)
downloadFreeBSD-src-7df8f89185018727f9f8972d619d5303546ddacd.zip
FreeBSD-src-7df8f89185018727f9f8972d619d5303546ddacd.tar.gz
Now that daddr_t has grown up, use %lld to printf it and cast it to long
long.
Diffstat (limited to 'sys/kern/subr_blist.c')
-rw-r--r--sys/kern/subr_blist.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/subr_blist.c b/sys/kern/subr_blist.c
index 6bb7ae7..eeeb7d9 100644
--- a/sys/kern/subr_blist.c
+++ b/sys/kern/subr_blist.c
@@ -546,7 +546,9 @@ blst_meta_free(
if (scan->u.bmu_avail == radix)
return;
if (scan->u.bmu_avail > radix)
- panic("blst_meta_free: freeing already free blocks (%d) %d/%d", count, scan->u.bmu_avail, radix);
+ panic("blst_meta_free: freeing already free blocks (%lld) %lld/%lld",
+ (long long)count, (long long)scan->u.bmu_avail,
+ (long long)radix);
/*
* Break the free down into its components
OpenPOWER on IntegriCloud