diff options
author | phk <phk@FreeBSD.org> | 1996-01-24 21:12:23 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-01-24 21:12:23 +0000 |
commit | e7b9c377f822bc4d0b50421da4eccbe73e43678b (patch) | |
tree | 0421eea4b1ecfb759a27845bf2c1d67cdf1d79c3 /sys/dev | |
parent | defff6cc5b2169d11d666f9ccd9d32a5719a8f28 (diff) | |
download | FreeBSD-src-e7b9c377f822bc4d0b50421da4eccbe73e43678b.zip FreeBSD-src-e7b9c377f822bc4d0b50421da4eccbe73e43678b.tar.gz |
Use new printf features rather than local kludges.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ed/if_ed.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c index d661a45..35f8740 100644 --- a/sys/dev/ed/if_ed.c +++ b/sys/dev/ed/if_ed.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ed.c,v 1.91 1995/12/15 00:54:07 bde Exp $ + * $Id: if_ed.c,v 1.92 1995/12/15 07:31:40 davidg Exp $ */ /* @@ -1465,8 +1465,8 @@ ed_attach(isa_dev) /* * Print additional info when attached */ - printf("ed%d: address %s, ", isa_dev->id_unit, - ether_sprintf(sc->arpcom.ac_enaddr)); + printf("ed%d: address %6D, ", isa_dev->id_unit, + sc->arpcom.ac_enaddr, ":"); if (sc->type_str && (*sc->type_str != 0)) printf("type %s ", sc->type_str); |