summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorkre <kre@NetBSD.org>2023-04-19 09:39:29 +0000
committerkre <kre@NetBSD.org>2023-04-19 09:39:29 +0000
commit8ac4154f3b05fc5223b1f42f5dfbb6ceac377ade (patch)
tree2f6c7f90c91f9715ac3bce0eba68bc5c0d79ee33 /games
parent89d05ee6375ec70db9e23f9e325ef3a8c6fe4bff (diff)
Another err message typo! (found this one myself!!)
Diffstat (limited to 'games')
-rw-r--r--games/worms/worms.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/worms/worms.c b/games/worms/worms.c
index 0b1dfa89618..ec6cfc0c3d4 100644
--- a/games/worms/worms.c
+++ b/games/worms/worms.c
@@ -1,4 +1,4 @@
-/* $NetBSD: worms.c,v 1.28 2023/04/19 07:40:49 kre Exp $ */
+/* $NetBSD: worms.c,v 1.29 2023/04/19 09:39:29 kre Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\
#if 0
static char sccsid[] = "@(#)worms.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: worms.c,v 1.28 2023/04/19 07:40:49 kre Exp $");
+__RCSID("$NetBSD: worms.c,v 1.29 2023/04/19 09:39:29 kre Exp $");
#endif
#endif /* not lint */
@@ -314,7 +314,7 @@ main(int argc, char *argv[])
ul = (unsigned long)CO * LI;
if ((unsigned long)length > ul / 20) {
endwin();
- errx(1, "-l: worms loo long (%d) for screen; max: %lu",
+ errx(1, "-l: worms too long (%d) for screen; max: %lu",
length, ul / 20);
}