diff options
author | 2001-04-19 05:32:39 +0000 | |
---|---|---|
committer | 2001-04-19 05:32:39 +0000 | |
commit | 1c6c98025264b0a3f0dc5746e185e45bc8fcdd8f (patch) | |
tree | 692706dcb4f2bc24815fb3e7605314d045237d34 | |
parent | When printing the address/size, use the correct value 32, not 16. (diff) | |
download | wireguard-openbsd-1c6c98025264b0a3f0dc5746e185e45bc8fcdd8f.tar.xz wireguard-openbsd-1c6c98025264b0a3f0dc5746e185e45bc8fcdd8f.zip |
Remove extra arg; from Loic Tortay <loict@bougon.net> via aaron@.
deraadt@ ok.
-rw-r--r-- | sys/dev/pcmcia/if_ne_pcmcia.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/if_ne_pcmcia.c b/sys/dev/pcmcia/if_ne_pcmcia.c index 4260407f64a..07d63a05f1e 100644 --- a/sys/dev/pcmcia/if_ne_pcmcia.c +++ b/sys/dev/pcmcia/if_ne_pcmcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ne_pcmcia.c,v 1.42 2001/04/19 05:10:33 fgsch Exp $ */ +/* $OpenBSD: if_ne_pcmcia.c,v 1.43 2001/04/19 05:32:39 fgsch Exp $ */ /* $NetBSD: if_ne_pcmcia.c,v 1.17 1998/08/15 19:00:04 thorpej Exp $ */ /* @@ -590,8 +590,7 @@ again: } } if (i == NE2000_NDEVS) { - printf(": can't match ethernet vendor code\n", - dsc->sc_dev.dv_xname); + printf(": can't match ethernet vendor code\n"); goto fail_5; } |