mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a printf warning from the recent CAM changes.
This commit is contained in:
parent
c8589ad169
commit
659be635a4
1 changed files with 2 additions and 2 deletions
|
|
@ -357,10 +357,10 @@ vpo_action(struct cam_sim *sim, union ccb *ccb)
|
|||
ccg = &ccb->ccg;
|
||||
|
||||
#ifdef VP0_DEBUG
|
||||
printf("vpo%d: XPT_CALC_GEOMETRY (bs=%d,vs=%d,c=%d,h=%d,spt=%d) request\n",
|
||||
printf("vpo%d: XPT_CALC_GEOMETRY (bs=%d,vs=%jd,c=%d,h=%d,spt=%d) request\n",
|
||||
vpo->vpo_unit,
|
||||
ccg->block_size,
|
||||
ccg->volume_size,
|
||||
(intmax_t)ccg->volume_size,
|
||||
ccg->cylinders,
|
||||
ccg->heads,
|
||||
ccg->secs_per_track);
|
||||
|
|
|
|||
Loading…
Reference in a new issue