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/if_rum.c | |
parent | c5a35e5e8fca2938e5df4defb2374aed13f6c09a (diff) |
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/if_rum.c')
-rw-r--r-- | sys/dev/usb/if_rum.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index 0e767561047..c20370b678a 100644 --- a/sys/dev/usb/if_rum.c +++ b/sys/dev/usb/if_rum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rum.c,v 1.54 2007/02/19 17:22:02 deraadt Exp $ */ +/* $OpenBSD: if_rum.c,v 1.55 2007/05/21 05:40:27 jsg Exp $ */ /*- * Copyright (c) 2005-2007 Damien Bergamini <damien.bergamini@free.fr> @@ -72,8 +72,8 @@ #endif #ifdef RUM_DEBUG -#define DPRINTF(x) do { if (rum_debug) logprintf x; } while (0) -#define DPRINTFN(n, x) do { if (rum_debug >= (n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (rum_debug) printf x; } while (0) +#define DPRINTFN(n, x) do { if (rum_debug >= (n)) printf x; } while (0) int rum_debug = 0; #else #define DPRINTF(x) |