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/ueagle.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/ueagle.c')
| -rw-r--r-- | sys/dev/usb/ueagle.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ueagle.c b/sys/dev/usb/ueagle.c index 2d4548b57b8..4065be2414f 100644 --- a/sys/dev/usb/ueagle.c +++ b/sys/dev/usb/ueagle.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ueagle.c,v 1.12 2006/09/16 13:31:04 damien Exp $ */ +/* $OpenBSD: ueagle.c,v 1.13 2007/05/21 05:40:28 jsg Exp $ */ /*- * Copyright (c) 2003-2006 @@ -56,8 +56,8 @@ #include <dev/usb/ueaglevar.h> #ifdef USB_DEBUG -#define DPRINTF(x) do { if (ueagledebug > 0) logprintf x; } while (0) -#define DPRINTFN(n, x) do { if (ueagledebug >= (n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (ueagledebug > 0) printf x; } while (0) +#define DPRINTFN(n, x) do { if (ueagledebug >= (n)) printf x; } while (0) int ueagledebug = 0; #else #define DPRINTF(x) |
