diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-05-21 05:40:29 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-05-21 05:40:29 +0000 |
commit | 1b539c3c7dd463c768cad0db562eab4a77af23c6 (patch) | |
tree | efa66dfccc2805a47bb9e009967268d66bcdf130 /sys/dev/usb/urio.c | |
parent | c5a35e5e8fca2938e5df4defb2374aed13f6c09a (diff) |
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/urio.c')
-rw-r--r-- | sys/dev/usb/urio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/urio.c b/sys/dev/usb/urio.c index 38c92880962..7f02ff90d87 100644 --- a/sys/dev/usb/urio.c +++ b/sys/dev/usb/urio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: urio.c,v 1.21 2006/06/23 06:27:12 miod Exp $ */ +/* $OpenBSD: urio.c,v 1.22 2007/05/21 05:40:28 jsg Exp $ */ /* $NetBSD: urio.c,v 1.15 2002/10/23 09:14:02 jdolecek Exp $ */ /* @@ -73,8 +73,8 @@ #include <dev/usb/urio.h> #ifdef URIO_DEBUG -#define DPRINTF(x) do { if (uriodebug) logprintf x; } while (0) -#define DPRINTFN(n,x) do { if (uriodebug>(n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (uriodebug) printf x; } while (0) +#define DPRINTFN(n,x) do { if (uriodebug>(n)) printf x; } while (0) int uriodebug = 0; #else #define DPRINTF(x) |