summaryrefslogtreecommitdiff
path: root/sys/dev/usb/usscanner.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/usb/usscanner.c')
-rw-r--r--sys/dev/usb/usscanner.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usscanner.c b/sys/dev/usb/usscanner.c
index e588d4b2ed3..1a39a85f755 100644
--- a/sys/dev/usb/usscanner.c
+++ b/sys/dev/usb/usscanner.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usscanner.c,v 1.12 2006/11/28 23:59:45 dlg Exp $ */
+/* $OpenBSD: usscanner.c,v 1.13 2007/05/21 05:40:28 jsg Exp $ */
/* $NetBSD: usscanner.c,v 1.6 2001/01/23 14:04:14 augustss Exp $ */
/*
@@ -81,8 +81,8 @@
#endif
#ifdef USSCANNER_DEBUG
-#define DPRINTF(x) do { if (usscannerdebug) logprintf x; } while (0)
-#define DPRINTFN(n,x) do { if (usscannerdebug>(n)) logprintf x; } while (0)
+#define DPRINTF(x) do { if (usscannerdebug) printf x; } while (0)
+#define DPRINTFN(n,x) do { if (usscannerdebug>(n)) printf x; } while (0)
int usscannerdebug = 0;
#else
#define DPRINTF(x)