summaryrefslogtreecommitdiff
path: root/sys/dev/usb/umodem.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/umodem.c
parentc5a35e5e8fca2938e5df4defb2374aed13f6c09a (diff)
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/umodem.c')
-rw-r--r--sys/dev/usb/umodem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c
index c4124fa1366..8b5f74953ec 100644
--- a/sys/dev/usb/umodem.c
+++ b/sys/dev/usb/umodem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umodem.c,v 1.23 2007/03/12 05:43:34 deraadt Exp $ */
+/* $OpenBSD: umodem.c,v 1.24 2007/05/21 05:40:28 jsg Exp $ */
/* $NetBSD: umodem.c,v 1.45 2002/09/23 05:51:23 simonb Exp $ */
/*
@@ -76,7 +76,7 @@
#include <dev/usb/ucomvar.h>
#ifdef UMODEM_DEBUG
-#define DPRINTFN(n, x) do { if (umodemdebug > (n)) logprintf x; } while (0)
+#define DPRINTFN(n, x) do { if (umodemdebug > (n)) printf x; } while (0)
int umodemdebug = 0;
#else
#define DPRINTFN(n, x)