From 99d3468790ac8c8b09a1c0fcc326e9cdc04791fa Mon Sep 17 00:00:00 2001 From: scottr Date: Sun, 28 Nov 1999 10:10:51 +0000 Subject: [PATCH] Don't use the plural form of the word "target" if there is only one! --- sys/arch/mac68k/dev/adb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/mac68k/dev/adb.c b/sys/arch/mac68k/dev/adb.c index ad9140d32a7f..4c81569fe124 100644 --- a/sys/arch/mac68k/dev/adb.c +++ b/sys/arch/mac68k/dev/adb.c @@ -1,4 +1,4 @@ -/* $NetBSD: adb.c,v 1.32 1999/11/07 08:22:50 scottr Exp $ */ +/* $NetBSD: adb.c,v 1.33 1999/11/28 10:10:51 scottr Exp $ */ /* * Copyright (C) 1994 Bradley A. Grantham @@ -170,7 +170,7 @@ adb_config_interrupts(self) totaladbs = CountADBs(); - printf(": %d targets\n", totaladbs); + printf(": %d target%s\n", totaladbs, (totaladbs == 1) ? "" : "s"); #if NAED > 0 /* ADB event device for compatibility */