summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mapdef.cc')
-rw-r--r--crawl-ref/source/mapdef.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index 98e41ce51d..b373c9b40d 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -982,7 +982,7 @@ std::string map_lines::block_shuffle(const std::string &s)
{
std::vector<std::string> segs = split_string("/", s);
std::random_shuffle(segs.begin(), segs.end(), random2);
- return comma_separated_line(segs.begin(), segs.end(), "/", "/");
+ return (comma_separated_line(segs.begin(), segs.end(), "/", "/"));
}
std::string map_lines::shuffle(std::string s)