diff options
-rw-r--r-- | sys/dev/usb/uticom.c | 2 |
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 |