Some more linter warnings
[open-adventure.git] / actions.c
index 16d303f10d60c216b128eca5a17af5ec2e9ee2a7..6189c36522443334bae0923827eacacf8a6aa584 100644 (file)
--- a/actions.c
+++ b/actions.c
@@ -14,7 +14,7 @@ static int attack(FILE *input, struct command_t *command)
 {
     vocab_t verb = command->verb;
     vocab_t obj = command->obj;
-    int spk = actions[verb].message;
+    long spk = actions[verb].message;
     if (obj == 0 || obj == INTRANSITIVE) {
         if (atdwrf(game.loc) > 0)
             obj = DWARF;