summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-12 18:04:00 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-12 18:04:00 +0000
commit46dff5896c09c3950088d77665fb2b48538add79 (patch)
tree58bc3a55db12b943380ffd10a4a5195bff497c15 /crawl-ref/source/hiscores.cc
parent16b8d5a29f16ac5b86dca8edf9462b1807ca67eb (diff)
downloadcrawl-ref-46dff5896c09c3950088d77665fb2b48538add79.tar.gz
crawl-ref-46dff5896c09c3950088d77665fb2b48538add79.zip
Properly use default parameters when displaying comma-separated lists.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9048 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index d221d4a56b..cf27ba0992 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -724,7 +724,7 @@ std::string scorefile_entry::make_oneline(const std::string &ml) const
trim_string(s);
}
}
- return comma_separated_line(lines.begin(), lines.end(), " ", " ");
+ return (comma_separated_line(lines.begin(), lines.end(), " ", " "));
}
std::string scorefile_entry::long_kill_message() const