diff mbox

[6/7] usb-uvc: Fix a couple of typos

Message ID 1306993270-24144-7-git-send-email-bradh@frogmouth.net
State New
Headers show

Commit Message

Brad Hards June 2, 2011, 5:41 a.m. UTC
Signed-off-by: Brad Hards <bradh@frogmouth.net>
---
 hw/usb-uvc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

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");