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:
Rebecca Cran 2020-03-18 03:15:57 +00:00
parent 7e03a82b63
commit cbd7ddcf65
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359064

View File

@ -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);