summaryrefslogtreecommitdiff
path: root/sys/dev/usb/uticom.c
diff options
context:
space:
mode:
authorMarc Winiger <winiger@cvs.openbsd.org>2007-11-23 12:58:13 +0000
committerMarc Winiger <winiger@cvs.openbsd.org>2007-11-23 12:58:13 +0000
commit76639104ee2d49c22bb32238b6a65110a5c48f50 (patch)
treeae3b92c91a0bc9f0ee8edb908182e06f884e2885 /sys/dev/usb/uticom.c
parentf69f017b14d45fdb16090ae1f15adef1534c44ba (diff)
kprintf -> printf, unbreaks USB_DEBUG
"of course" deraadt@
Diffstat (limited to 'sys/dev/usb/uticom.c')
-rw-r--r--sys/dev/usb/uticom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/uticom.c b/sys/dev/usb/uticom.c
index 07fcb3b753e..d7797ce6336 100644
--- a/sys/dev/usb/uticom.c
+++ b/sys/dev/usb/uticom.c
@@ -47,7 +47,7 @@
#ifdef USB_DEBUG
static int uticomdebug = 0;
-#define DPRINTFN(n, x) do { if (uticomdebug > (n)) kprintf x; } while (0)
+#define DPRINTFN(n, x) do { if (uticomdebug > (n)) printf x; } while (0)
#else
#define DPRINTFN(n, x)
#endif