summaryrefslogtreecommitdiffstats
path: root/rogue
diff options
context:
space:
mode:
authorpk <pk@NetBSD.org>1997-05-17 19:24:44 +0000
committerpk <pk@NetBSD.org>1997-05-17 19:24:44 +0000
commitb218620de93fbebcfba8ec74b22d33986ba70b3f (patch)
treebabfc29746c0627a1f08d231c120eac9691c18db /rogue
parent531a2505768cab68a9b91fb45959ed2be5a2fc33 (diff)
downloadbsdgames-darwin-b218620de93fbebcfba8ec74b22d33986ba70b3f.tar.gz
bsdgames-darwin-b218620de93fbebcfba8ec74b22d33986ba70b3f.tar.zst
bsdgames-darwin-b218620de93fbebcfba8ec74b22d33986ba70b3f.zip
NULL => 0 (Arne Juul; PR#3629)
Diffstat (limited to 'rogue')
-rw-r--r--rogue/inventory.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/rogue/inventory.c b/rogue/inventory.c
index c36f9235..0a42e12f 100644
--- a/rogue/inventory.c
+++ b/rogue/inventory.c
@@ -1,4 +1,4 @@
-/* $NetBSD: inventory.c,v 1.3 1995/04/22 10:27:35 cgd Exp $ */
+/* $NetBSD: inventory.c,v 1.4 1997/05/17 19:26:24 pk Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -40,7 +40,7 @@
#if 0
static char sccsid[] = "@(#)inventory.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: inventory.c,v 1.3 1995/04/22 10:27:35 cgd Exp $";
+static char rcsid[] = "$NetBSD: inventory.c,v 1.4 1997/05/17 19:26:24 pk Exp $";
#endif
#endif /* not lint */
@@ -182,9 +182,9 @@ struct id_com_s com_id_tab[COMS] = {
'b', "b down & left",
'c', "c call object",
'n', "n down & right",
- NULL, "<SHIFT><dir>: run that way",
+ '\0', "<SHIFT><dir>: run that way",
')', ") print current weapon",
- NULL, "<CTRL><dir>: run till adjacent",
+ '\0', "<CTRL><dir>: run till adjacent",
']', "] print current armor",
'f', "f<dir> fight till death or near death",
'=', "= print current rings",