Change a printf() formatter to use %d for a uint32_t.

llvm-svn: 190548
diff --git a/lldb/source/Core/Log.cpp b/lldb/source/Core/Log.cpp
index 9b06ab7..8d659cf 100644
--- a/lldb/source/Core/Log.cpp
+++ b/lldb/source/Core/Log.cpp
@@ -100,7 +100,7 @@
         if (m_options.Test (LLDB_LOG_OPTION_PREPEND_TIMESTAMP))
         {
             TimeValue now = TimeValue::Now();
-            header.Printf ("%9ld.%6.6d ", now.seconds(), now.nanoseconds());
+            header.Printf ("%9d.%6.6d ", now.seconds(), now.nanoseconds());
         }
 
         // Add the process and thread if requested