diff options
author | Deepak Panickal <deepak@codeplay.com> | 2014-03-03 15:39:47 +0000 |
---|---|---|
committer | Deepak Panickal <deepak@codeplay.com> | 2014-03-03 15:39:47 +0000 |
commit | 99fbc07600b16093ac2875a461a1c086ae1db5ee (patch) | |
tree | caa3aa183d1a4d2acc0021abc38de58c260fb9e7 /lldb/source/Expression/ClangFunction.cpp | |
parent | 6fa32b6f545477a2d539499cb3c8702c3a47f870 (diff) | |
download | bcm5719-llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.tar.gz bcm5719-llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.zip |
Fix Windows build using portable types for formatting the log outputs
llvm-svn: 202723
Diffstat (limited to 'lldb/source/Expression/ClangFunction.cpp')
-rw-r--r-- | lldb/source/Expression/ClangFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/ClangFunction.cpp b/lldb/source/Expression/ClangFunction.cpp index e707c60ffce..6a56970373f 100644 --- a/lldb/source/Expression/ClangFunction.cpp +++ b/lldb/source/Expression/ClangFunction.cpp @@ -173,7 +173,7 @@ ClangFunction::CompileFunction (Stream &errors) } else { - errors.Printf("Could not determine type of input value %zu.", i); + errors.Printf("Could not determine type of input value %" PRId64 ".", i); return 1; } } @@ -344,7 +344,7 @@ ClangFunction::WriteFunctionArguments (ExecutionContext &exe_ctx, size_t num_args = arg_values.GetSize(); if (num_args != m_arg_values.GetSize()) { - errors.Printf ("Wrong number of arguments - was: %zu should be: %zu", num_args, m_arg_values.GetSize()); + errors.Printf ("Wrong number of arguments - was: %" PRId64 " should be: %" PRId64 "", num_args, m_arg_values.GetSize()); return false; } |