]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/hack.cmd.c
Remove extra semicolon.
[bsdgames-darwin.git] / hack / hack.cmd.c
index a9e7fc08db85fbc7b353e274408e7dd82f3b2762..e11431477194cc88051dbac56cc92925248a2360 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hack.cmd.c,v 1.10 2009/08/12 07:28:40 dholland Exp $   */
+/*     $NetBSD: hack.cmd.c,v 1.12 2011/08/06 20:42:43 dholland Exp $   */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -63,7 +63,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hack.cmd.c,v 1.10 2009/08/12 07:28:40 dholland Exp $");
+__RCSID("$NetBSD: hack.cmd.c,v 1.12 2011/08/06 20:42:43 dholland Exp $");
 #endif                         /* not lint */
 
 #include       "hack.h"
@@ -139,7 +139,7 @@ static const struct func_tab cmdlist[] = {
 static const struct ext_func_tab extcmdlist[] = {
        { "dip", dodip },
        { "pray", dopray },
-       { (char *) 0, donull }
+       { NULL, donull }
 };
 
 static char lowc(int);
@@ -159,7 +159,7 @@ rhack(const char *cmd)
        }
        if (!*cmd || (*cmd & 0377) == 0377 ||
            (flags.no_rest_on_space && *cmd == ' ')) {
-               bell();
+               sound_bell();
                flags.move = 0;
                return;         /* probably we just had an interrupt */
        }