diff options
author | Pavel Labath <labath@google.com> | 2015-04-30 10:47:56 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-04-30 10:47:56 +0000 |
commit | d351bcc858c7e32205658601cc3ee6988b2c03bb (patch) | |
tree | 853609def8d874e17b862063ea879f78f59c8154 /lldb/source/Core/Log.cpp | |
parent | 811f21493cb56588ef227a0556db2bfe24422b2e (diff) | |
download | bcm5719-llvm-d351bcc858c7e32205658601cc3ee6988b2c03bb.tar.gz bcm5719-llvm-d351bcc858c7e32205658601cc3ee6988b2c03bb.zip |
Fix typo in Core/Log
llvm-svn: 236222
Diffstat (limited to 'lldb/source/Core/Log.cpp')
-rw-r--r-- | lldb/source/Core/Log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Log.cpp b/lldb/source/Core/Log.cpp index 15ac57c7a6f..a83075481ed 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; - Printf("error: %s", args); + Printf("error: %s", arg_msg); free(arg_msg); } |