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/if_uath.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/if_uath.c')
-rw-r--r-- | sys/dev/usb/if_uath.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_uath.c b/sys/dev/usb/if_uath.c index a1f05fd8e45..4258aa11874 100644 --- a/sys/dev/usb/if_uath.c +++ b/sys/dev/usb/if_uath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_uath.c,v 1.17 2007/02/19 17:22:02 deraadt Exp $ */ +/* $OpenBSD: if_uath.c,v 1.18 2007/05/21 05:40:27 jsg Exp $ */ /*- * Copyright (c) 2006 @@ -81,8 +81,8 @@ #endif #ifdef UATH_DEBUG -#define DPRINTF(x) do { if (uath_debug) logprintf x; } while (0) -#define DPRINTFN(n, x) do { if (uath_debug >= (n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (uath_debug) printf x; } while (0) +#define DPRINTFN(n, x) do { if (uath_debug >= (n)) printf x; } while (0) int uath_debug = 1; #else #define DPRINTF(x) |