summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwiniger <winiger@openbsd.org>2007-11-23 12:58:12 +0000
committerwiniger <winiger@openbsd.org>2007-11-23 12:58:12 +0000
commit97b8fa93bff837a567362959429d271a2c27cdf6 (patch)
tree8d3cc093982632d795f4037da998aba06c7c06ca
parentt10 has a whole spec on doing SCSI to ATA translation called SAT. i wish (diff)
downloadwireguard-openbsd-97b8fa93bff837a567362959429d271a2c27cdf6.tar.xz
wireguard-openbsd-97b8fa93bff837a567362959429d271a2c27cdf6.zip
kprintf -> printf, unbreaks USB_DEBUG
"of course" deraadt@
-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