svn commit: r359064 - head/usr.sbin/bhyve
Rebecca Cran
bcran at FreeBSD.org
Wed Mar 18 03:15:58 UTC 2020
Author: bcran
Date: Wed Mar 18 03:15:57 2020
New Revision: 359064
URL: https://svnweb.freebsd.org/changeset/base/359064
Log:
Bhyve: DPRINTF already includes newline, so don't add another
Reviewed by: jhb, vmaffione, emaste
Differential Revision: https://reviews.freebsd.org/D24099
Modified:
head/usr.sbin/bhyve/pci_fbuf.c
Modified: head/usr.sbin/bhyve/pci_fbuf.c
==============================================================================
--- head/usr.sbin/bhyve/pci_fbuf.c Wed Mar 18 03:14:17 2020 (r359063)
+++ head/usr.sbin/bhyve/pci_fbuf.c Wed Mar 18 03:15:57 2020 (r359064)
@@ -135,7 +135,7 @@ pci_fbuf_write(struct vmctx *ctx, int vcpu, struct pci
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_
}
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);
More information about the svn-src-head
mailing list