From b218620de93fbebcfba8ec74b22d33986ba70b3f Mon Sep 17 00:00:00 2001 From: pk Date: Sat, 17 May 1997 19:24:44 +0000 Subject: NULL => 0 (Arne Juul; PR#3629) --- rogue/inventory.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rogue') 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, ": run that way", + '\0', ": run that way", ')', ") print current weapon", - NULL, ": run till adjacent", + '\0', ": run till adjacent", ']', "] print current armor", 'f', "f fight till death or near death", '=', "= print current rings", -- cgit v1.2.3