diff options
author | 2007-05-21 05:40:27 +0000 | |
---|---|---|
committer | 2007-05-21 05:40:27 +0000 | |
commit | 695146ce8180512370aa44750fc87b1be6f3ae5c (patch) | |
tree | 5b3f9a99ac1a8a426bac337e998f9c7abe9980b7 /sys/dev/usb/usbdi.c | |
parent | Remove Ether_ifattach macro (diff) | |
download | wireguard-openbsd-695146ce8180512370aa44750fc87b1be6f3ae5c.tar.xz wireguard-openbsd-695146ce8180512370aa44750fc87b1be6f3ae5c.zip |
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/usbdi.c')
-rw-r--r-- | sys/dev/usb/usbdi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c index fd4c1aa3f16..696832bd162 100644 --- a/sys/dev/usb/usbdi.c +++ b/sys/dev/usb/usbdi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: usbdi.c,v 1.28 2007/03/31 19:46:44 bluhm Exp $ */ +/* $OpenBSD: usbdi.c,v 1.29 2007/05/21 05:40:28 jsg Exp $ */ /* $NetBSD: usbdi.c,v 1.103 2002/09/27 15:37:38 provos Exp $ */ /* $FreeBSD: src/sys/dev/usb/usbdi.c,v 1.28 1999/11/17 22:33:49 n_hibma Exp $ */ @@ -69,8 +69,8 @@ #endif #ifdef USB_DEBUG -#define DPRINTF(x) do { if (usbdebug) logprintf x; } while (0) -#define DPRINTFN(n,x) do { if (usbdebug>(n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (usbdebug) printf x; } while (0) +#define DPRINTFN(n,x) do { if (usbdebug>(n)) printf x; } while (0) extern int usbdebug; #else #define DPRINTF(x) |