Module Name:    src
Committed By:   kre
Date:           Wed Apr 19 09:39:29 UTC 2023

Modified Files:
        src/games/worms: worms.c

Log Message:
Another err message typo!   (found this one myself!!)


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/games/worms/worms.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/worms/worms.c
diff -u src/games/worms/worms.c:1.28 src/games/worms/worms.c:1.29
--- src/games/worms/worms.c:1.28	Wed Apr 19 07:40:49 2023
+++ src/games/worms/worms.c	Wed Apr 19 09:39:29 2023
@@ -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, 19
 #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);
 	}
 

Reply via email to