mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
ntb: Fix the 32-bit build after r366969
Reported by: Jenkins MFC with: r366969
This commit is contained in:
parent
a792802f2b
commit
93fb2b060b
1 changed files with 2 additions and 1 deletions
|
|
@ -3353,7 +3353,8 @@ intel_ntb_peer_db_set(device_t dev, uint64_t bits)
|
|||
uint64_t db;
|
||||
|
||||
if ((bits & ~ntb->db_valid_mask) != 0) {
|
||||
device_printf(ntb->device, "Invalid doorbell bits %lx\n", bits);
|
||||
device_printf(ntb->device, "Invalid doorbell bits %#jx\n",
|
||||
(uintmax_t)bits);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue