Module Name:    src
Committed By:   kre
Date:           Wed Apr 19 07:40:49 UTC 2023

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

Log Message:
Typo in an error message (pointed out by RVP; Thanks)


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 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.27 src/games/worms/worms.c:1.28
--- src/games/worms/worms.c:1.27	Tue Apr 18 15:02:22 2023
+++ src/games/worms/worms.c	Wed Apr 19 07:40:49 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: worms.c,v 1.27 2023/04/18 15:02:22 kre Exp $	*/
+/*	$NetBSD: worms.c,v 1.28 2023/04/19 07:40:49 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.27 2023/04/18 15:02:22 kre Exp $");
+__RCSID("$NetBSD: worms.c,v 1.28 2023/04/19 07:40:49 kre Exp $");
 #endif
 #endif /* not lint */
 
@@ -233,7 +233,7 @@ main(int argc, char *argv[])
 				ul *= 1000;  /* ms -> us */
 			if (ul > 1000*1000) {
 				errx(1,
-				   "-d: delay (%s) out of rannge [0 - 1000]",
+				   "-d: delay (%s) out of range [0 - 1000]",
 				   optarg);
 			}
 			delay = (unsigned int)ul;

Reply via email to