diff options
author | 1998-11-16 06:20:36 +0000 | |
---|---|---|
committer | 1998-11-16 06:20:36 +0000 | |
commit | 992dbc504bead26976f6d787109fa88faa2eb04a (patch) | |
tree | 0b8d2d56b8292abb439e182aee1e175d939fcd94 | |
parent | more -Wall (diff) | |
download | wireguard-openbsd-992dbc504bead26976f6d787109fa88faa2eb04a.tar.xz wireguard-openbsd-992dbc504bead26976f6d787109fa88faa2eb04a.zip |
save a bit of space; theo.
-rw-r--r-- | sys/arch/sparc/dev/qec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/dev/qec.c b/sys/arch/sparc/dev/qec.c index f0573775853..6b68f3ffaa1 100644 --- a/sys/arch/sparc/dev/qec.c +++ b/sys/arch/sparc/dev/qec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qec.c,v 1.9 1998/11/11 00:26:00 jason Exp $ */ +/* $OpenBSD: qec.c,v 1.10 1998/11/16 06:20:36 jason Exp $ */ /* * Copyright (c) 1998 Theo de Raadt and Jason L. Wright. @@ -156,9 +156,9 @@ qecattach(parent, self, aux) /* Clamp at parent's burst sizes */ sc->sc_burst &= sbusburst; - printf(": %dK memory %d %s", + printf(": %dK memory %d channel%s", sc->sc_bufsiz / 1024, sc->sc_nchannels, - (sc->sc_nchannels == 1) ? "channel" : "channels"); + (sc->sc_nchannels == 1) ? "" : "s"); node = sc->sc_node = ca->ca_ra.ra_node; |