diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2007-01-03 21:17:45 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2007-01-03 21:17:45 +0000 |
commit | 154ac13620baabf42e54a1cd83dcec4f9fc9d6ec (patch) | |
tree | 0534f0b09ac23554f6c1022832393c58e2db4256 /sys | |
parent | a462f7344295c7ccfc1973c825cdbd65e76aff98 (diff) |
shorten dmesg a bit
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mac68k/dev/if_ae.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/dev/if_ae.c b/sys/arch/mac68k/dev/if_ae.c index d3f3025cb6f..cce17c3240e 100644 --- a/sys/arch/mac68k/dev/if_ae.c +++ b/sys/arch/mac68k/dev/if_ae.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ae.c,v 1.31 2006/12/06 18:40:03 martin Exp $ */ +/* $OpenBSD: if_ae.c,v 1.32 2007/01/03 21:17:44 martin Exp $ */ /* $NetBSD: if_ae.c,v 1.62 1997/04/24 16:52:05 scottr Exp $ */ /* @@ -181,7 +181,7 @@ aesetup(sc) /* Print additional info when attached. */ printf(": address %s, ", ether_sprintf(sc->sc_arpcom.ac_enaddr)); - printf("type %s, %dKB memory\n", sc->type_str, sc->mem_size / 1024); + printf("%s, %dKB memory\n", sc->type_str, sc->mem_size / 1024); return 0; } |