diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-10-09 19:36:36 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-10-09 19:36:36 +0000 |
commit | f11abd64664c5162757087cd17de2aef2576f98a (patch) | |
tree | 5e0ade1ecaf16496ca26e69d51d53df3466b9425 /sys/dev/pci | |
parent | f19f4f4a137e94a75814de4bbd7d482f8ccde907 (diff) |
remove colon after "address" when printing the MAC address.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_em.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_em.c b/sys/dev/pci/if_em.c index faefb850c26..cdf0e25a061 100644 --- a/sys/dev/pci/if_em.c +++ b/sys/dev/pci/if_em.c @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ -/* $OpenBSD: if_em.c,v 1.73 2005/10/08 01:49:20 brad Exp $ */ +/* $OpenBSD: if_em.c,v 1.74 2005/10/09 19:36:35 brad Exp $ */ /* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */ #include <dev/pci/if_em.h> @@ -364,7 +364,7 @@ em_attach(struct device *parent, struct device *self, void *aux) &sc->link_duplex); } - printf(", address: %s\n", ether_sprintf(sc->interface_data.ac_enaddr)); + printf(", address %s\n", ether_sprintf(sc->interface_data.ac_enaddr)); /* Identify 82544 on PCIX */ em_get_bus_info(&sc->hw); |