mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add (intmax_t) type casts to some printf parameters to keep i386 happy.
This commit is contained in:
parent
2a36aee276
commit
f33fbc18f5
1 changed files with 2 additions and 1 deletions
|
|
@ -156,7 +156,8 @@ distance(fs, lastblk, firstblk)
|
|||
return (&buf[0]);
|
||||
}
|
||||
snprintf(buf, 100, " cg %d blk %jd to cg %d blk %jd",
|
||||
lastcg, dtogd(fs, lastblk), firstcg, dtogd(fs, firstblk));
|
||||
lastcg, (intmax_t)dtogd(fs, lastblk), firstcg,
|
||||
(intmax_t)dtogd(fs, firstblk));
|
||||
return (&buf[0]);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue