From 7df8f89185018727f9f8972d619d5303546ddacd Mon Sep 17 00:00:00 2001 From: jhb Date: Sat, 18 May 2002 23:46:04 +0000 Subject: Now that daddr_t has grown up, use %lld to printf it and cast it to long long. --- sys/kern/subr_blist.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/kern/subr_blist.c') 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 -- cgit v1.1