Module Name:    src
Committed By:   hannken
Date:           Sun Apr 24 09:55:48 UTC 2022

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

Log Message:
Add missing argument to debug printf.


To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 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.78 src/sys/dev/usb/uvideo.c:1.79
--- src/sys/dev/usb/uvideo.c:1.78	Sun Apr 17 13:17:30 2022
+++ src/sys/dev/usb/uvideo.c	Sun Apr 24 09:55:48 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvideo.c,v 1.78 2022/04/17 13:17:30 riastradh Exp $	*/
+/*	$NetBSD: uvideo.c,v 1.79 2022/04/24 09:55:48 hannken Exp $	*/
 
 /*
  * Copyright (c) 2008 Patrick Mahoney
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvideo.c,v 1.78 2022/04/17 13:17:30 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvideo.c,v 1.79 2022/04/24 09:55:48 hannken Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -1422,6 +1422,7 @@ uvideo_stream_init_frame_based_format(st
 			DPRINTF(("uvideo:"
 				" truncated CS subtype-0x%x descriptor,"
 				" length %d < %d",
+				uvdesc->bDescriptorSubtype,
 				uvdesc->bLength, subtypelen));
 			break;
 		}

Reply via email to