summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-16 22:36:32 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-16 22:36:32 +0000
commit522907df5d8c48883fb147c9c9fe919934d552c4 (patch)
tree50e66f9fda195a4ed2236aaa50e137423dfe8dcf /crawl-ref/source
parent70eae80f572544e187512aaa4c6ba085d707a648 (diff)
downloadcrawl-ref-522907df5d8c48883fb147c9c9fe919934d552c4.tar.gz
crawl-ref-522907df5d8c48883fb147c9c9fe919934d552c4.zip
Refix gcc pickiness fix to conform to haranp-dislikes-C-style-casts-pickiness :)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2119 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/spells3.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index ea8bf51f7d..e1f0406c1f 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -766,7 +766,7 @@ bool entomb(int powc)
continue;
bool proceed = false;
- for (int i = 0; i < (int) ARRAYSIZE(safe_to_overwrite); ++i)
+ for (unsigned int i = 0; i < ARRAYSIZE(safe_to_overwrite); ++i)
{
if (grd[srx][sry] == safe_to_overwrite[i])
{