Module Name:    src
Committed By:   joerg
Date:           Tue May 24 16:40:21 UTC 2011

Modified Files:
        src/sys/dev/usb: uvideo.c

Log Message:
Use proper format string


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/dev/usb/uvideo.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/uvideo.c
diff -u src/sys/dev/usb/uvideo.c:1.34 src/sys/dev/usb/uvideo.c:1.35
--- src/sys/dev/usb/uvideo.c:1.34	Mon May 16 10:53:19 2011
+++ src/sys/dev/usb/uvideo.c	Tue May 24 16:40:21 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvideo.c,v 1.34 2011/05/16 10:53:19 drochner Exp $	*/
+/*	$NetBSD: uvideo.c,v 1.35 2011/05/24 16:40:21 joerg Exp $	*/
 
 /*
  * Copyright (c) 2008 Patrick Mahoney
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvideo.c,v 1.34 2011/05/16 10:53:19 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvideo.c,v 1.35 2011/05/24 16:40:21 joerg Exp $");
 
 #ifdef _MODULE
 #include <sys/module.h>
@@ -1511,7 +1511,7 @@
 			bx->bx_running = true;
 			ret = kthread_create(PRI_UVIDEO, 0, NULL,
 			    uvideo_stream_recv_bulk_transfer, vs,
-			    NULL, device_xname(sc->sc_dev));
+			    NULL, "%s", device_xname(sc->sc_dev));
 			if (ret) {
 				DPRINTF(("uvideo: couldn't create kthread:"
 					 " %d\n", err));

Reply via email to