summaryrefslogtreecommitdiff
path: root/sys/dev/usb/uvideo.c
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2008-04-16 17:18:43 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2008-04-16 17:18:43 +0000
commit9857837776ff857024e83e50cac9ffc65d2a94c1 (patch)
tree12ca78194f364639d747b8828886c9122a2d6c0f /sys/dev/usb/uvideo.c
parent492e0114c0dd66a3a7d7c06e3606d9efba58d13c (diff)
Oops, decrease debug log level back to 1.
Diffstat (limited to 'sys/dev/usb/uvideo.c')
-rw-r--r--sys/dev/usb/uvideo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c
index 40407cd37c2..5242e239632 100644
--- a/sys/dev/usb/uvideo.c
+++ b/sys/dev/usb/uvideo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvideo.c,v 1.6 2008/04/16 12:19:11 mglocker Exp $ */
+/* $OpenBSD: uvideo.c,v 1.7 2008/04/16 17:18:42 mglocker Exp $ */
/*
* Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
@@ -46,7 +46,7 @@
#define UVIDEO_DEBUG
#ifdef UVIDEO_DEBUG
-int uvideo_debug = 2;
+int uvideo_debug = 1;
#define DPRINTF(l, x...) do { if ((l) <= uvideo_debug) printf(x); } while (0)
#else
#define DPRINTF(l, x...)