diff options
author | 2007-01-03 10:01:34 +0000 | |
---|---|---|
committer | 2007-01-03 10:01:34 +0000 | |
commit | cf0e284ff4b8f40dba7dc751807faed321948cba (patch) | |
tree | 450f194ad4e10187236b36f225c4713aa55f515c | |
parent | set permissions back on the file after it got copied from the (diff) | |
download | wireguard-openbsd-cf0e284ff4b8f40dba7dc751807faed321948cba.tar.xz wireguard-openbsd-cf0e284ff4b8f40dba7dc751807faed321948cba.zip |
Don't wrap line before printing MAC address.
-rw-r--r-- | sys/dev/pci/if_bcw_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bcw_pci.c b/sys/dev/pci/if_bcw_pci.c index 280e3f18c81..b3c9b5cfdb1 100644 --- a/sys/dev/pci/if_bcw_pci.c +++ b/sys/dev/pci/if_bcw_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bcw_pci.c,v 1.7 2006/12/08 01:28:40 mglocker Exp $ */ +/* $OpenBSD: if_bcw_pci.c,v 1.8 2007/01/03 10:01:34 mglocker Exp $ */ /* * Copyright (c) 2006 Jon Simola <jsimola@gmail.com> @@ -213,7 +213,7 @@ bcw_pci_attach(struct device *parent, struct device *self, void *aux) return; } - printf(": %s\n", sc->bcw_intrstr); + printf(": %s", sc->bcw_intrstr); sc->sc_enable = bcw_pci_enable; sc->sc_disable = bcw_pci_disable; |