summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ghost.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-05-12 17:56:57 -0400
committerNeil Moore <neil@s-z.org>2014-05-12 18:10:15 -0400
commitebb4a9ff33a46f1aa69c06acb33dd218b747234a (patch)
treec945396d7f393b040bbd5ec3bf16753b3e4b272a /crawl-ref/source/ghost.cc
parent5ac2fffa8870e41b22e98d0d034f7bfb191821fa (diff)
downloadcrawl-ref-ebb4a9ff33a46f1aa69c06acb33dd218b747234a.tar.gz
crawl-ref-ebb4a9ff33a46f1aa69c06acb33dd218b747234a.zip
Fix "if(" and friends.
Diffstat (limited to 'crawl-ref/source/ghost.cc')
-rw-r--r--crawl-ref/source/ghost.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index 1e33770731..8fb1341afb 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -798,7 +798,7 @@ static spell_type search_spell_list(spell_type* spells, spell_type ignore_up_to_
break;
}
- while(spells[i] != SPELL_NO_SPELL)
+ while (spells[i] != SPELL_NO_SPELL)
{
if (_know_spell(spells[i]))
return spells[i];