mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix printf formating.
Fix for f4fc389.
Reported by: Jenkins
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
f4fc389524
commit
2aa6ed881d
1 changed files with 2 additions and 1 deletions
|
|
@ -705,7 +705,8 @@ cacheino(union dinode *dp, ino_t inumber)
|
|||
int i, blks;
|
||||
|
||||
if (getinoinfo(inumber) != NULL)
|
||||
pfatal("cacheino: duplicate entry for ino %ld\n", inumber);
|
||||
pfatal("cacheino: duplicate entry for ino %jd\n",
|
||||
(intmax_t)inumber);
|
||||
if (howmany(DIP(dp, di_size), sblock.fs_bsize) > UFS_NDADDR)
|
||||
blks = UFS_NDADDR + UFS_NIADDR;
|
||||
else if (DIP(dp, di_size) > 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue