summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-05 12:33:00 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-05 13:03:12 +0200
commit53671ccab2db8416aa16b9df6ba799e0cfaa78dd (patch)
tree652c985a199e144b6795ce64a7011b4f5a68a022 /crawl-ref/source/macro.cc
parent1e34f3b3685886a2186a90ee2e6c976aa15c8730 (diff)
downloadcrawl-ref-53671ccab2db8416aa16b9df6ba799e0cfaa78dd.tar.gz
crawl-ref-53671ccab2db8416aa16b9df6ba799e0cfaa78dd.zip
String scalars are scalars, too.
Diffstat (limited to 'crawl-ref/source/macro.cc')
-rw-r--r--crawl-ref/source/macro.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/macro.cc b/crawl-ref/source/macro.cc
index d52f39737b..eeeb330d77 100644
--- a/crawl-ref/source/macro.cc
+++ b/crawl-ref/source/macro.cc
@@ -1217,7 +1217,7 @@ std::string command_to_name(command_type cmd)
cmd_to_name_map::iterator it = _cmds_to_names.find(cmd);
if (it == _cmds_to_names.end())
- return ("CMD_NO_CMD");
+ return "CMD_NO_CMD";
return (it->second);
}