summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-dgn.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-05 12:14:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-05 12:14:09 +0200
commitc41419c4f47bbf0737d3fedf58128c835d2c4e3b (patch)
tree764ae18c107df39fd90af718922036bd245561ca /crawl-ref/source/wiz-dgn.cc
parentb80adef8882143cad34f3c8bcc9a8ccbd4440223 (diff)
downloadcrawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.tar.gz
crawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.zip
Drop parentheses around scalar values in "return".
Diffstat (limited to 'crawl-ref/source/wiz-dgn.cc')
-rw-r--r--crawl-ref/source/wiz-dgn.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/wiz-dgn.cc b/crawl-ref/source/wiz-dgn.cc
index 4574959c0c..7ae857227a 100644
--- a/crawl-ref/source/wiz-dgn.cc
+++ b/crawl-ref/source/wiz-dgn.cc
@@ -71,7 +71,7 @@ static dungeon_feature_type _find_appropriate_stairs(bool down)
mpr("This branch has no exit stairs defined.");
return DNGN_UNSEEN;
}
- return (stairs);
+ return stairs;
}
// Branch non-edge cases
else if (depth >= 1)
@@ -415,7 +415,7 @@ static int find_trap_slot()
{
for (int i = 0; i < MAX_TRAPS; ++i)
if (env.trap[i].type == TRAP_UNASSIGNED)
- return (i);
+ return i;
return (-1);
}