From 61e8cfc1d553b2bc0cce6b0dd56b03f51f187423 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Mon, 23 Feb 2015 09:11:56 +0100 Subject: Clean up warnings about signed/unsigned comparisons --- src/spells1.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/spells1.cc') diff --git a/src/spells1.cc b/src/spells1.cc index 9207974c..0eda200c 100644 --- a/src/spells1.cc +++ b/src/spells1.cc @@ -8956,6 +8956,10 @@ bool_ potion_smash_effect(int who, int y, int x, int o_sval) (void) project(who, radius, y, x, dam, dt, (PROJECT_JUMP | PROJECT_ITEM | PROJECT_KILL)); + // Silence warning. We may want to introuce an actual implementation + // and I want to preserve the original "ident" values if we do so. + (void) ident; + /* XXX those potions that explode need to become "known" */ return angry; } -- cgit v1.2.3