1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

The boot countdown timer says it will boot in 1 seconds,

which is grammatically incorrect.

PR:		12628
Submitted-By:	R. Matthew Emerson <rme@nightfly.apk.net>
This commit is contained in:
Nick Hibma 1999-07-15 20:40:52 +00:00
parent d5432a043e
commit 1854719067
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48829

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: boot.c,v 1.11 1999/05/28 08:01:52 brian Exp $
* $Id: boot.c,v 1.12 1999/05/30 10:45:03 dfr Exp $
*/
/*
@ -202,7 +202,9 @@ autoboot(int delay, char *prompt)
break;
}
if (ntime != otime) {
printf("\rBooting [%s] in %d seconds... ", getbootfile(0), (int)(when - ntime));
printf("\rBooting [%s] in %d second%s... ",
getbootfile(0), (int)(when - ntime),
(when-ntime)==1?"":"s");
otime = ntime;
}
}