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/uhid.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/uhid.c')
-rw-r--r-- | sys/dev/usb/uhid.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uhid.c b/sys/dev/usb/uhid.c index 73d6c167b08..b6ca1c84696 100644 --- a/sys/dev/usb/uhid.c +++ b/sys/dev/usb/uhid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uhid.c,v 1.30 2006/11/01 03:37:24 tedu Exp $ */ +/* $OpenBSD: uhid.c,v 1.31 2007/05/21 05:40:28 jsg Exp $ */ /* $NetBSD: uhid.c,v 1.57 2003/03/11 16:44:00 augustss Exp $ */ /* @@ -69,8 +69,8 @@ #include <dev/usb/uhidev.h> #ifdef UHID_DEBUG -#define DPRINTF(x) do { if (uhiddebug) logprintf x; } while (0) -#define DPRINTFN(n,x) do { if (uhiddebug>(n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (uhiddebug) printf x; } while (0) +#define DPRINTFN(n,x) do { if (uhiddebug>(n)) printf x; } while (0) int uhiddebug = 0; #else #define DPRINTF(x) |