summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/if_ral.c
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2007-05-21 05:40:27 +0000
committerjsg <jsg@openbsd.org>2007-05-21 05:40:27 +0000
commit695146ce8180512370aa44750fc87b1be6f3ae5c (patch)
tree5b3f9a99ac1a8a426bac337e998f9c7abe9980b7 /sys/dev/usb/if_ral.c
parentRemove Ether_ifattach macro (diff)
downloadwireguard-openbsd-695146ce8180512370aa44750fc87b1be6f3ae5c.tar.xz
wireguard-openbsd-695146ce8180512370aa44750fc87b1be6f3ae5c.zip
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/if_ral.c')
-rw-r--r--sys/dev/usb/if_ral.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_ral.c b/sys/dev/usb/if_ral.c
index 1b35c9a6fe0..dd023fc0078 100644
--- a/sys/dev/usb/if_ral.c
+++ b/sys/dev/usb/if_ral.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ral.c,v 1.89 2007/02/19 17:22:02 deraadt Exp $ */
+/* $OpenBSD: if_ral.c,v 1.90 2007/05/21 05:40:27 jsg Exp $ */
/*-
* Copyright (c) 2005, 2006
@@ -72,8 +72,8 @@
#endif
#ifdef URAL_DEBUG
-#define DPRINTF(x) do { if (ural_debug) logprintf x; } while (0)
-#define DPRINTFN(n, x) do { if (ural_debug >= (n)) logprintf x; } while (0)
+#define DPRINTF(x) do { if (ural_debug) printf x; } while (0)
+#define DPRINTFN(n, x) do { if (ural_debug >= (n)) printf x; } while (0)
int ural_debug = 0;
#else
#define DPRINTF(x)