summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/format.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/format.cc')
-rw-r--r--crawl-ref/source/format.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/format.cc b/crawl-ref/source/format.cc
index 59fc8152bf..94c6b3cdfa 100644
--- a/crawl-ref/source/format.cc
+++ b/crawl-ref/source/format.cc
@@ -516,7 +516,7 @@ void formatted_string::cprintf(const char *s, ...)
{
va_list args;
va_start(args, s);
- cprintf(make_stringf(s, args));
+ cprintf(vmake_stringf(s, args));
va_end(args);
}