fixing msvc build (format string z is not supported)

llvm-svn: 234708
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
index c06d69f..4c406b0 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
@@ -221,7 +221,7 @@
     strm.EOL();
     strm.IndentMore();
     strm.Indent();
-    strm.Printf("Globals: %zu", m_globals.size());
+    strm.Printf("Globals: %" PRIu64, static_cast<uint64_t>(m_globals.size()));
     strm.EOL();
     strm.IndentMore();
     for (const auto &global : m_globals)
@@ -230,7 +230,7 @@
     }
     strm.IndentLess();
     strm.Indent();
-    strm.Printf("Kernels: %zu", m_kernels.size());
+    strm.Printf("Kernels: %" PRIu64, static_cast<uint64_t>(m_kernels.size()));
     strm.EOL();
     strm.IndentMore();
     for (const auto &kernel : m_kernels)