diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2007-10-17 20:10:45 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2007-10-17 20:10:45 +0000 |
commit | 6ebd6f0640abbc5048b4975c40fac23ec404930b (patch) | |
tree | e364116c961d5cba80890eb55637a78439f78bf8 /games/backgammon | |
parent | 4f4368721b2619584d945f74ab23327bad6ac500 (diff) |
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.c | 5 |
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) { |