summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>1998-11-16 06:20:37 +0000
committerJason Wright <jason@cvs.openbsd.org>1998-11-16 06:20:37 +0000
commit082fbea9e1fc8c588eaf72bc5ba9ab865bdbe963 (patch)
tree7143b0e40c53a7734992dfc9934fbdacc3e0204d /sys/arch
parentf0f016d8b74560415f91ee1d0b32935db8468c2b (diff)
save a bit of space; theo.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc/dev/qec.c6
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;