diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2007-01-03 10:01:35 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2007-01-03 10:01:35 +0000 |
commit | f0e93f92018b45efe82f244158b9994e8d2ba018 (patch) | |
tree | bd0644bf9fa191ae587e235e27c1dc1bfa8aa305 /sys/dev/pci | |
parent | feb82c8efd45f85e818e3da911334393992b092e (diff) |
Don't wrap line before printing MAC address.
Diffstat (limited to 'sys/dev/pci')
-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; |