Skip to content

Commit

Permalink
ntb: Fix the 32-bit build after r366969
Browse files Browse the repository at this point in the history
Reported by:	Jenkins
MFC with:	r366969
  • Loading branch information
markjdb committed Oct 23, 2020
1 parent ef5bd6f commit d1cbc9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sys/dev/ntb/ntb_hw/ntb_hw_intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit d1cbc9b

Please sign in to comment.