Fix typo in Core/Log

llvm-svn: 236222
This commit is contained in:
Pavel Labath 2015-04-30 10:47:56 +00:00
parent 811f21493c
commit d351bcc858
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}