diff options
author | Matt Kopec <Matt.Kopec@intel.com> | 2013-06-03 18:00:07 +0000 |
---|---|---|
committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-06-03 18:00:07 +0000 |
commit | ef14371d3f9c1c431e381b1d66266b0e326eaa22 (patch) | |
tree | b8a96c939b55fa621cb5f28996b1e7a0a025420a /lldb/source/DataFormatters/Cocoa.cpp | |
parent | 6f961239ae62bbefe9370b1b99322e1e7b3f7b4a (diff) | |
download | bcm5719-llvm-ef14371d3f9c1c431e381b1d66266b0e326eaa22.tar.gz bcm5719-llvm-ef14371d3f9c1c431e381b1d66266b0e326eaa22.zip |
Fix various build warnings.
llvm-svn: 183140
Diffstat (limited to 'lldb/source/DataFormatters/Cocoa.cpp')
-rw-r--r-- | lldb/source/DataFormatters/Cocoa.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/DataFormatters/Cocoa.cpp b/lldb/source/DataFormatters/Cocoa.cpp index 0d7bcc9d90e..2a1e9099eba 100644 --- a/lldb/source/DataFormatters/Cocoa.cpp +++ b/lldb/source/DataFormatters/Cocoa.cpp @@ -7,6 +7,8 @@ // //===----------------------------------------------------------------------===// +#include "lldb/lldb-python.h" + #include "lldb/DataFormatters/CXXFormatterFunctions.h" #include "lldb/Core/DataBufferHeap.h" @@ -284,7 +286,7 @@ lldb_private::formatters::NSIndexSetSummaryProvider (ValueObject& valobj, Stream return false; } } while (false); - stream.Printf("%llu index%s", + stream.Printf("%" PRIu64 " index%s", count, (count == 1 ? "" : "es")); return true; |