Fix various build warnings.

llvm-svn: 183140
This commit is contained in:
Matt Kopec
2013-06-03 18:00:07 +00:00
parent 6f961239ae
commit ef14371d3f
19 changed files with 52 additions and 49 deletions

View File

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