summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-util.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-09-07 18:12:24 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-09-08 02:44:19 +0200
commit997da1ad7d76c471901b834b70f686c578d913a6 (patch)
tree3b67f7581d2e97c5b79e491353ca1b156ea50d9a /crawl-ref/source/spl-util.cc
parent83fa91821cab56fbf9b0694bae8784ad1c1baafd (diff)
downloadcrawl-ref-997da1ad7d76c471901b834b70f686c578d913a6.tar.gz
crawl-ref-997da1ad7d76c471901b834b70f686c578d913a6.zip
Drop some useless parentheses.
Diffstat (limited to 'crawl-ref/source/spl-util.cc')
-rw-r--r--crawl-ref/source/spl-util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-util.cc b/crawl-ref/source/spl-util.cc
index 69baf1989c..ba85e25201 100644
--- a/crawl-ref/source/spl-util.cc
+++ b/crawl-ref/source/spl-util.cc
@@ -895,7 +895,7 @@ static const spell_desc *_seekspell(spell_type spell)
const int index = spell_list[spell];
ASSERT(index != -1);
- return (&spelldata[index]);
+ return &spelldata[index];
}
bool is_valid_spell(spell_type spell)