summaryrefslogtreecommitdiff
path: root/sys/dev/usb/if_cue.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2007-05-21 05:40:29 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2007-05-21 05:40:29 +0000
commit1b539c3c7dd463c768cad0db562eab4a77af23c6 (patch)
treeefa66dfccc2805a47bb9e009967268d66bcdf130 /sys/dev/usb/if_cue.c
parentc5a35e5e8fca2938e5df4defb2374aed13f6c09a (diff)
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/if_cue.c')
-rw-r--r--sys/dev/usb/if_cue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c
index 4b986024bde..190a9f11eb8 100644
--- a/sys/dev/usb/if_cue.c
+++ b/sys/dev/usb/if_cue.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_cue.c,v 1.33 2007/05/21 05:18:56 jsg Exp $ */
+/* $OpenBSD: if_cue.c,v 1.34 2007/05/21 05:40:27 jsg Exp $ */
/* $NetBSD: if_cue.c,v 1.40 2002/07/11 21:14:26 augustss Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000
@@ -107,8 +107,8 @@
#include <dev/usb/if_cuereg.h>
#ifdef CUE_DEBUG
-#define DPRINTF(x) do { if (cuedebug) logprintf x; } while (0)
-#define DPRINTFN(n,x) do { if (cuedebug >= (n)) logprintf x; } while (0)
+#define DPRINTF(x) do { if (cuedebug) printf x; } while (0)
+#define DPRINTFN(n,x) do { if (cuedebug >= (n)) printf x; } while (0)
int cuedebug = 0;
#else
#define DPRINTF(x)