Signed-off-by: Brad Hards <[email protected]>
---
hw/usb-uvc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/usb-uvc.c b/hw/usb-uvc.c
index 661eb1a..1e3d339 100644
--- a/hw/usb-uvc.c
+++ b/hw/usb-uvc.c
@@ -893,7 +893,7 @@ static int usb_uvc_initfn(USBDevice *dev)
error_report("V4L2 device specification needed.\n");
return -1;
} else {
- DPRINTF("Trying to open %s\n.", s->v4l2_device);
+ DPRINTF("Trying to open %s.\n", s->v4l2_device);
}
v4l2_fd = open(s->v4l2_device, O_RDWR);
@@ -1042,7 +1042,7 @@ static USBDevice *usb_uvc_init(const char *filename)
dev = usb_create(NULL /* FIXME */, "usb-uvc-webcam");
qdev_init_nofail(&dev->qdev);
- DPRINTF("Filename: %s\n.", filename);
+ DPRINTF("Filename: %s.\n", filename);
if (!*filename) {
error_report("character device specification needed");
--
1.7.4.1