mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Now that daddr_t has grown up, use %lld to printf it and cast it to long
long.
This commit is contained in:
parent
6a681d9a3c
commit
bdc9a8d01b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96882
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user