diff options
Diffstat (limited to 'lldb/source/Core/Log.cpp')
-rw-r--r-- | lldb/source/Core/Log.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Core/Log.cpp b/lldb/source/Core/Log.cpp index fde7bee1606..15ac57c7a6f 100644 --- a/lldb/source/Core/Log.cpp +++ b/lldb/source/Core/Log.cpp @@ -217,7 +217,7 @@ Log::Error(const char *format, ...) if (arg_msg == nullptr) return; - VAPrintf("error: %s", arg_msg); + Printf("error: %s", args); free(arg_msg); } @@ -236,7 +236,7 @@ Log::FatalError(int err, const char *format, ...) if (arg_msg != nullptr) { - VAPrintf("error: %s", arg_msg); + Printf("error: %s", arg_msg); ::free(arg_msg); } ::exit(err); @@ -278,7 +278,7 @@ Log::WarningVerbose(const char *format, ...) if (arg_msg == nullptr) return; - VAPrintf("warning: %s", arg_msg); + Printf("warning: %s", arg_msg); free(arg_msg); } //---------------------------------------------------------------------- @@ -296,7 +296,7 @@ Log::Warning(const char *format, ...) if (arg_msg == nullptr) return; - VAPrintf("warning: %s", arg_msg); + Printf("warning: %s", arg_msg); free(arg_msg); } |