diff options
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; |