Fix printf format specifier to silence warning.
authorChaoren Lin <chaorenl@google.com>
Thu, 9 Apr 2015 20:21:42 +0000 (20:21 +0000)
committerChaoren Lin <chaorenl@google.com>
Thu, 9 Apr 2015 20:21:42 +0000 (20:21 +0000)
llvm-svn: 234531

lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp

index f35051a..c06d69f 100644 (file)
@@ -221,7 +221,7 @@ RSModuleDescriptor::Dump(Stream &strm) const
     strm.EOL();
     strm.IndentMore();
     strm.Indent();
-    strm.Printf("Globals: %u", m_globals.size());
+    strm.Printf("Globals: %zu", m_globals.size());
     strm.EOL();
     strm.IndentMore();
     for (const auto &global : m_globals)
@@ -230,7 +230,7 @@ RSModuleDescriptor::Dump(Stream &strm) const
     }
     strm.IndentLess();
     strm.Indent();
-    strm.Printf("Kernels: %u", m_kernels.size());
+    strm.Printf("Kernels: %zu", m_kernels.size());
     strm.EOL();
     strm.IndentMore();
     for (const auto &kernel : m_kernels)