summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-03-06 04:41:19 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-03-06 04:41:19 +0000
commit8a3344df5c862e7b397c1fdbd80f8872733417b0 (patch)
tree803ab4ed1024900074d5b867265b21159d184971
parent39115ed7801fd0646cb14b6b70997ecf5aa68450 (diff)
fixes from adobriyan@gmail
-rw-r--r--games/rogue/init.c6
-rw-r--r--games/rogue/rogue.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/games/rogue/init.c b/games/rogue/init.c
index 0448f574483..139dee30eb3 100644
--- a/games/rogue/init.c
+++ b/games/rogue/init.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init.c,v 1.9 2004/01/21 19:12:13 espie Exp $ */
+/* $OpenBSD: init.c,v 1.10 2006/03/06 04:41:18 deraadt Exp $ */
/* $NetBSD: init.c,v 1.4 1995/04/28 23:49:19 mycroft Exp $ */
/*
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
#else
-static const char rcsid[] = "$OpenBSD: init.c,v 1.9 2004/01/21 19:12:13 espie Exp $";
+static const char rcsid[] = "$OpenBSD: init.c,v 1.10 2006/03/06 04:41:18 deraadt Exp $";
#endif
#endif /* not lint */
@@ -250,7 +250,7 @@ do_args(argc, argv)
int argc;
char *argv[];
{
- short i, j;
+ int i, j;
for (i = 1; i < argc; i++) {
if (argv[i][0] == '-') {
diff --git a/games/rogue/rogue.h b/games/rogue/rogue.h
index 22493236cb2..ed4c7eaefda 100644
--- a/games/rogue/rogue.h
+++ b/games/rogue/rogue.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rogue.h,v 1.14 2004/01/21 19:12:13 espie Exp $ */
+/* $OpenBSD: rogue.h,v 1.15 2006/03/06 04:41:18 deraadt Exp $ */
/* $NetBSD: rogue.h,v 1.4 1995/04/24 12:25:04 cgd Exp $ */
/*
@@ -504,7 +504,7 @@ void eat(void);
void edit_opts(void);
void env_get_value(char **, char *, boolean);
void error_save(int);
-void fight(int);
+void fight(boolean);
void fill_it(int, boolean);
void fill_out_level(void);
boolean flame_broil(object *);