Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/arch/mac68k/dev Pull up revision 1.33 (requested by...



details:   https://anonhg.NetBSD.org/src/rev/5dc4db107ef2
branches:  netbsd-1-4
changeset: 469763:5dc4db107ef2
user:      he <he%NetBSD.org@localhost>
date:      Mon Nov 29 21:21:20 1999 +0000

description:
Pull up revision 1.33 (requested by scottr):
  Use correct English when reporting the number of ADB target(s).

diffstat:

 sys/arch/mac68k/dev/adb.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 75fae2dffd68 -r 5dc4db107ef2 sys/arch/mac68k/dev/adb.c
--- a/sys/arch/mac68k/dev/adb.c Mon Nov 29 21:20:37 1999 +0000
+++ b/sys/arch/mac68k/dev/adb.c Mon Nov 29 21:21:20 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: adb.c,v 1.27.4.1 1999/11/21 15:02:46 he Exp $  */
+/*     $NetBSD: adb.c,v 1.27.4.2 1999/11/29 21:21:20 he Exp $  */
 
 /*
  * Copyright (C) 1994  Bradley A. Grantham
@@ -156,7 +156,7 @@
 
        totaladbs = CountADBs();
 
-       printf(": %d targets\n", totaladbs);
+       printf(": %d target%s\n", totaladbs, (totaladbs == 1) ? "" : "s");
 
 #if NAED > 0
        /* ADB event device for compatibility */



Home | Main Index | Thread Index | Old Index