[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/4] virtio-pci: Convert fprintf() to error_report()
|
From: |
Stefan Hajnoczi |
|
Subject: |
[Qemu-devel] [PATCH 4/4] virtio-pci: Convert fprintf() to error_report() |
|
Date: |
Mon, 15 Nov 2010 20:44:38 +0000 |
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
hw/virtio-pci.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c
index 729917d..b9d0349 100644
--- a/hw/virtio-pci.c
+++ b/hw/virtio-pci.c
@@ -254,8 +254,8 @@ static void virtio_ioport_write(void *opaque, uint32_t
addr, uint32_t val)
virtio_queue_set_vector(vdev, vdev->queue_sel, val);
break;
default:
- fprintf(stderr, "%s: unexpected address 0x%x value 0x%x\n",
- __func__, addr, val);
+ error_report("%s: unexpected address 0x%x value 0x%x",
+ __func__, addr, val);
break;
}
}
--
1.7.2.3