diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-17 18:23:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-17 18:23:50 +0000 |
commit | 9c7dea7fce35914ac153925ca7ea3a7ca37fcb55 (patch) | |
tree | db726810a69abdc808dbe6473e17eb57dc2e700f | |
parent | 9e4dbd85e4c2ac29a9c1481e61eccb60cacea781 (diff) |
printf repair
-rw-r--r-- | sys/dev/pci/if_bge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 4ba9e36770b..6e189a02efe 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.28 2004/08/05 19:57:17 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.29 2004/08/17 18:23:49 deraadt Exp $ */ /* * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2001 @@ -1597,7 +1597,7 @@ bge_attach(parent, self, aux) /* * A Broadcom chip was detected. Inform the world. */ - printf(": address: %s\n", + printf(" address %s\n", ether_sprintf(sc->arpcom.ac_enaddr)); /* Allocate the general information block and ring buffers. */ |