diff options
author | 2006-12-29 07:17:53 +0000 | |
---|---|---|
committer | 2006-12-29 07:17:53 +0000 | |
commit | 9568ca18a43ae276206d9f2e37d05d85399d3b39 (patch) | |
tree | 5c90101df831457090d88514d1d6b600819a2341 /sys | |
parent | Replace setperf algorithm with a linear version. Also use the aml provided (diff) | |
download | wireguard-openbsd-9568ca18a43ae276206d9f2e37d05d85399d3b39.tar.xz wireguard-openbsd-9568ca18a43ae276206d9f2e37d05d85399d3b39.zip |
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); } |