summaryrefslogtreecommitdiff
path: root/server/src/macrotool_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/macrotool_util.cc')
-rw-r--r--server/src/macrotool_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/macrotool_util.cc b/server/src/macrotool_util.cc
index d6446f7..003e929 100644
--- a/server/src/macrotool_util.cc
+++ b/server/src/macrotool_util.cc
@@ -71,7 +71,7 @@ std::vector<std::string> getTemplates()
void printcolumn(std::string text, size_t width)
{
- printf(text.c_str());
+ printf("%s", text.c_str());
for(size_t i = text.length(); i < width; i++) printf(" ");
printf("\t");
}