]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/hack.timeout.c
Remove extra semicolon.
[bsdgames-darwin.git] / hack / hack.timeout.c
index 49632f4f33a35705d815cbce72a6ce42f29e5d46..17b3c177aad58169082782548c38c1caf7e38ac8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hack.timeout.c,v 1.7 2009/06/07 18:30:39 dholland Exp $        */
+/*     $NetBSD: hack.timeout.c,v 1.9 2011/05/23 22:53:25 joerg Exp $   */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hack.timeout.c,v 1.7 2009/06/07 18:30:39 dholland Exp $");
+__RCSID("$NetBSD: hack.timeout.c,v 1.9 2011/05/23 22:53:25 joerg Exp $");
 #endif                         /* not lint */
 
 #include "hack.h"
 #include "extern.h"
 
+static void stoned_dialogue(void);
+
 void
 timeout(void)
 {
@@ -112,7 +114,7 @@ timeout(void)
 }
 
 /* He is being petrified - dialogue by inmet!tower */
-const char           *const stoned_texts[] = {
+static const char *const stoned_texts[] = {
        "You are slowing down.",/* 5 */
        "Your limbs are stiffening.",   /* 4 */
        "Your limbs have turned to stone.",     /* 3 */
@@ -120,13 +122,13 @@ const char           *const stoned_texts[] = {
        "You are a statue."     /* 1 */
 };
 
-void
+static void
 stoned_dialogue(void)
 {
        long            i = (Stoned & TIMEOUT);
 
        if (i > 0 && i <= SIZE(stoned_texts))
-               pline(stoned_texts[SIZE(stoned_texts) - i]);
+               pline("%s", stoned_texts[SIZE(stoned_texts) - i]);
        if (i == 5)
                Fast = 0;
        if (i == 3)