summaryrefslogtreecommitdiffstats
path: root/games/backgammon
diff options
context:
space:
mode:
authorchl <chl@openbsd.org>2007-10-17 20:10:44 +0000
committerchl <chl@openbsd.org>2007-10-17 20:10:44 +0000
commitc87a726c3e27d4be66a6aec694a7a7f0b5ef6bd8 (patch)
treeb176b69af4712e40d5627189e4d6536b9376c794 /games/backgammon
parent- Be more careful about pre-existing SIGCHLD handlers (or SIG_IGN) by (diff)
downloadwireguard-openbsd-c87a726c3e27d4be66a6aec694a7a7f0b5ef6bd8.tar.xz
wireguard-openbsd-c87a726c3e27d4be66a6aec694a7a7f0b5ef6bd8.zip
remove "unused variable" warnings
tested by deraadt@ on a gcc2 arch looks ok ray@ ok deraadt@
Diffstat (limited to 'games/backgammon')
-rw-r--r--games/backgammon/common_source/subs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/games/backgammon/common_source/subs.c b/games/backgammon/common_source/subs.c
index ce108cc07e3..11b32970936 100644
--- a/games/backgammon/common_source/subs.c
+++ b/games/backgammon/common_source/subs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subs.c,v 1.15 2006/10/31 18:15:15 ray Exp $ */
+/* $OpenBSD: subs.c,v 1.16 2007/10/17 20:10:44 chl Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -33,7 +33,7 @@
#if 0
static char sccsid[] = "@(#)subs.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: subs.c,v 1.15 2006/10/31 18:15:15 ray Exp $";
+static char rcsid[] = "$OpenBSD: subs.c,v 1.16 2007/10/17 20:10:44 chl Exp $";
#endif
#endif /* not lint */
@@ -201,7 +201,6 @@ getarg(argc,argv)
char **argv;
{
int ch;
- int j;
while ((ch = getopt(argc, argv, "bdnrs:w")) != -1)
switch((char)ch) {