]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/hack.potion.c
cgram: in hinting mode, show all correct characters in bold face
[bsdgames-darwin.git] / hack / hack.potion.c
index 147f0a9856f47c947a8657e88a339e0809b83239..09c00bc9481c3cd15bf964261bc40bbeb3133f09 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hack.potion.c,v 1.7 2009/06/07 18:30:39 dholland Exp $ */
+/*     $NetBSD: hack.potion.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.potion.c,v 1.7 2009/06/07 18:30:39 dholland Exp $");
+__RCSID("$NetBSD: hack.potion.c,v 1.9 2011/05/23 22:53:25 joerg Exp $");
 #endif                         /* not lint */
 
 #include "hack.h"
 #include "extern.h"
 
+static void ghost_from_bottle(void);
+
 int
 dodrink(void)
 {
@@ -284,13 +286,13 @@ strange_feeling(struct obj *obj, const char *txt)
        if (flags.beginner)
                pline("You have a strange feeling for a moment, then it passes.");
        else
-               pline(txt);
+               pline("%s", txt);
        if (!objects[obj->otyp].oc_name_known && !objects[obj->otyp].oc_uname)
                docall(obj);
        useup(obj);
 }
 
-const char           *const bottlenames[] = {
+static const char *const bottlenames[] = {
        "bottle", "phial", "flagon", "carafe", "flask", "jar", "vial"
 };
 
@@ -445,7 +447,7 @@ dodip(void)
        return (1);
 }
 
-void
+static void
 ghost_from_bottle(void)
 {
        struct monst   *mtmp;