summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/if_uath.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/usb/if_uath.c')
-rw-r--r--sys/dev/usb/if_uath.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_uath.c b/sys/dev/usb/if_uath.c
index a1f05fd8e45..4258aa11874 100644
--- a/sys/dev/usb/if_uath.c
+++ b/sys/dev/usb/if_uath.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_uath.c,v 1.17 2007/02/19 17:22:02 deraadt Exp $ */
+/* $OpenBSD: if_uath.c,v 1.18 2007/05/21 05:40:27 jsg Exp $ */
/*-
* Copyright (c) 2006
@@ -81,8 +81,8 @@
#endif
#ifdef UATH_DEBUG
-#define DPRINTF(x) do { if (uath_debug) logprintf x; } while (0)
-#define DPRINTFN(n, x) do { if (uath_debug >= (n)) logprintf x; } while (0)
+#define DPRINTF(x) do { if (uath_debug) printf x; } while (0)
+#define DPRINTFN(n, x) do { if (uath_debug >= (n)) printf x; } while (0)
int uath_debug = 1;
#else
#define DPRINTF(x)