aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bhyve/pci_ahci.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/bhyve/pci_ahci.c')
-rw-r--r--usr.sbin/bhyve/pci_ahci.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/bhyve/pci_ahci.c b/usr.sbin/bhyve/pci_ahci.c
index b69c099225db..1eef285a871c 100644
--- a/usr.sbin/bhyve/pci_ahci.c
+++ b/usr.sbin/bhyve/pci_ahci.c
@@ -2610,7 +2610,7 @@ pci_ahci_snapshot(struct vm_snapshot_meta *meta)
/* Mostly for restore; save is ensured by the lines above. */
if (((bctx == NULL) && (port->bctx != NULL)) ||
((bctx != NULL) && (port->bctx == NULL))) {
- fprintf(stderr, "%s: ports not matching\r\n", __func__);
+ EPRINTLN("%s: ports not matching", __func__);
ret = EINVAL;
goto done;
}
@@ -2619,9 +2619,8 @@ pci_ahci_snapshot(struct vm_snapshot_meta *meta)
continue;
if (port->port != i) {
- fprintf(stderr, "%s: ports not matching: "
- "actual: %d expected: %d\r\n",
- __func__, port->port, i);
+ EPRINTLN("%s: ports not matching: "
+ "actual: %d expected: %d", __func__, port->port, i);
ret = EINVAL;
goto done;
}