summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/Logging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Logging.cpp b/common/Logging.cpp
index f6d3906..4ba3d7a 100644
--- a/common/Logging.cpp
+++ b/common/Logging.cpp
@@ -86,6 +86,6 @@ void Log::log(Logger::log_level_t level, const std::string & msg)
void StdoutLogger::_log(const char * msg)
{
- printf(msg);
+ printf("%s", msg);
}