Skip to content

Commit

Permalink
Another err message typo! (found this one myself!!)
Browse files Browse the repository at this point in the history
  • Loading branch information
kre authored and kre committed Apr 19, 2023
1 parent 85eb242 commit 960a3d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions games/worms/worms.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 */

Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 960a3d1

Please sign in to comment.