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

llvm-svn: 190548
This commit is contained in:
Jason Molenda 2013-09-11 21:00:37 +00:00
parent 184d5d31bc
commit 3c2dacaf88
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ Log::PrintfWithFlagsVarArg (uint32_t flags, const char *format, va_list args)
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