aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bhyve/pci_xhci.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/bhyve/pci_xhci.c')
-rw-r--r--usr.sbin/bhyve/pci_xhci.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/bhyve/pci_xhci.c b/usr.sbin/bhyve/pci_xhci.c
index 2d37cb0f08fc..99c1d20b3378 100644
--- a/usr.sbin/bhyve/pci_xhci.c
+++ b/usr.sbin/bhyve/pci_xhci.c
@@ -3102,8 +3102,8 @@ pci_xhci_snapshot(struct vm_snapshot_meta *meta)
/* check if the restored device (when restoring) is sane */
if (restore_idx != i) {
- fprintf(stderr, "%s: idx not matching: actual: %d, "
- "expected: %d\r\n", __func__, restore_idx, i);
+ EPRINTLN("%s: idx not matching: actual: %d, "
+ "expected: %d", __func__, restore_idx, i);
ret = EINVAL;
goto done;
}
@@ -3118,9 +3118,9 @@ pci_xhci_snapshot(struct vm_snapshot_meta *meta)
if (meta->op == VM_SNAPSHOT_RESTORE) {
dname[sizeof(dname) - 1] = '\0';
if (strcmp(dev->dev_ue->ue_emu, dname)) {
- fprintf(stderr, "%s: device names mismatch: "
- "actual: %s, expected: %s\r\n",
- __func__, dname, dev->dev_ue->ue_emu);
+ EPRINTLN("%s: device names mismatch: "
+ "actual: %s, expected: %s",
+ __func__, dname, dev->dev_ue->ue_emu);
ret = EINVAL;
goto done;