summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-03-06 04:41:18 +0000
committerderaadt <deraadt@openbsd.org>2006-03-06 04:41:18 +0000
commit9027fd5d42651bdbccbe2072aeff451230b1a9ce (patch)
tree83aac56e9ec20eb3b9c76101618f634db17ff703
parentNo longer needed since it is moved to acpihpet. (diff)
downloadwireguard-openbsd-9027fd5d42651bdbccbe2072aeff451230b1a9ce.tar.xz
wireguard-openbsd-9027fd5d42651bdbccbe2072aeff451230b1a9ce.zip
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 *);