summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-01-11 06:45:26 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-01-11 06:45:26 +0000
commitfb9cc82228f7a7aa5780dc2c7373607d2a2cfe38 (patch)
tree5c003cc58fc3ff65dbda7748038d8a64c89f24d8
parent8dd63d6ea6486316f99d93595571e08790e27627 (diff)
Newline at end of debug printf.
-rw-r--r--sys/dev/pcmcia/if_wi.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/if_wi.c b/sys/dev/pcmcia/if_wi.c
index 5a41c2b8933..44b006e1019 100644
--- a/sys/dev/pcmcia/if_wi.c
+++ b/sys/dev/pcmcia/if_wi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_wi.c,v 1.18 2001/01/10 17:43:38 angelos Exp $ */
+/* $OpenBSD: if_wi.c,v 1.19 2001/01/11 06:45:25 angelos Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -133,7 +133,7 @@ u_int32_t widebug = WIDEBUG;
#if !defined(lint) && !defined(__OpenBSD__)
static const char rcsid[] =
- "$OpenBSD: if_wi.c,v 1.18 2001/01/10 17:43:38 angelos Exp $";
+ "$OpenBSD: if_wi.c,v 1.19 2001/01/11 06:45:25 angelos Exp $";
#endif /* lint */
#ifdef foo
@@ -1060,7 +1060,8 @@ wi_ioctl(ifp, command, data)
return(ENODEV);
}
- DPRINTF (WID_IOCTL, ("wi_ioctl: command %lu data %p", command, data));
+ DPRINTF (WID_IOCTL, ("wi_ioctl: command %lu data %p\n",
+ command, data));
if ((error = ether_ioctl(ifp, &sc->arpcom, command, data)) > 0) {
splx(s);