diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2006-12-29 07:17:54 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2006-12-29 07:17:54 +0000 |
commit | 954fff8d374d7db929c01b28e8a693cb411c5cfa (patch) | |
tree | 823f4923c128b2004be511c59ea303000fef6077 /sys | |
parent | 355e9617f8c5b33402c49658cec44b9bd86694c7 (diff) |
Don't wrap MAC address to newline.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_malo_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_malo_pci.c b/sys/dev/pci/if_malo_pci.c index bf5fe855118..0aa43b71f90 100644 --- a/sys/dev/pci/if_malo_pci.c +++ b/sys/dev/pci/if_malo_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_malo_pci.c,v 1.2 2006/11/29 10:37:11 mglocker Exp $ */ +/* $OpenBSD: if_malo_pci.c,v 1.3 2006/12/29 07:17:53 mglocker Exp $ */ /* * Copyright (c) 2006 Marcus Glocker <mglocker@openbsd.org> @@ -135,7 +135,7 @@ malo_pci_attach(struct device *parent, struct device *self, void *aux) printf("\n"); return; } - printf(": %s\n", intrstr); + printf(": %s", intrstr); malo_attach(sc); } |