mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Bhyve: DPRINTF already includes newline, so don't add another
Reviewed by: jhb, vmaffione, emaste Differential Revision: https://reviews.freebsd.org/D24099
This commit is contained in:
parent
7e03a82b63
commit
cbd7ddcf65
1 changed files with 2 additions and 2 deletions
|
|
@ -135,7 +135,7 @@ pci_fbuf_write(struct vmctx *ctx, int vcpu, struct pci_devinst *pi,
|
|||
sc = pi->pi_arg;
|
||||
|
||||
DPRINTF(DEBUG_VERBOSE,
|
||||
("fbuf wr: offset 0x%lx, size: %d, value: 0x%lx\n",
|
||||
("fbuf wr: offset 0x%lx, size: %d, value: 0x%lx",
|
||||
offset, size, value));
|
||||
|
||||
if (offset + size > DMEMSZ) {
|
||||
|
|
@ -217,7 +217,7 @@ pci_fbuf_read(struct vmctx *ctx, int vcpu, struct pci_devinst *pi,
|
|||
}
|
||||
|
||||
DPRINTF(DEBUG_VERBOSE,
|
||||
("fbuf rd: offset 0x%lx, size: %d, value: 0x%lx\n",
|
||||
("fbuf rd: offset 0x%lx, size: %d, value: 0x%lx",
|
||||
offset, size, value));
|
||||
|
||||
return (value);
|
||||
|
|
|
|||
Loading…
Reference in a new issue