diff options
author | Matt Kopec <Matt.Kopec@intel.com> | 2013-03-12 17:45:38 +0000 |
---|---|---|
committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-03-12 17:45:38 +0000 |
commit | 787d1623b0e349b0bafc9048017a5b2c2cde3e59 (patch) | |
tree | 41987bfd81828737ed665d6a84780f188a630830 /lldb/source/Expression | |
parent | e92f54a0105c4ac02910fee56d1adcc8f3af452e (diff) | |
download | bcm5719-llvm-787d1623b0e349b0bafc9048017a5b2c2cde3e59.tar.gz bcm5719-llvm-787d1623b0e349b0bafc9048017a5b2c2cde3e59.zip |
Misc. clang build warning fixes.
llvm-svn: 176879
Diffstat (limited to 'lldb/source/Expression')
-rw-r--r-- | lldb/source/Expression/ClangExpressionDeclMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangExpressionDeclMap.cpp b/lldb/source/Expression/ClangExpressionDeclMap.cpp index 078825797dc..e747f5b56f0 100644 --- a/lldb/source/Expression/ClangExpressionDeclMap.cpp +++ b/lldb/source/Expression/ClangExpressionDeclMap.cpp @@ -2307,7 +2307,7 @@ ClangExpressionDeclMap::DoMaterializeOneVariable { if (value_byte_size != value_data_extractor.GetByteSize()) { - err.SetErrorStringWithFormat ("Size mismatch for %s: %llu versus %llu", + err.SetErrorStringWithFormat ("Size mismatch for %s: %" PRIu64 " versus %" PRIu64, name.GetCString(), (uint64_t)value_data_extractor.GetByteSize(), (uint64_t)value_byte_size); |