aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectArgs.cpp
diff options
context:
space:
mode:
authorDeepak Panickal <deepak@codeplay.com>2014-03-03 15:39:47 +0000
committerDeepak Panickal <deepak@codeplay.com>2014-03-03 15:39:47 +0000
commit99fbc07600b16093ac2875a461a1c086ae1db5ee (patch)
treecaa3aa183d1a4d2acc0021abc38de58c260fb9e7 /lldb/source/Commands/CommandObjectArgs.cpp
parent6fa32b6f545477a2d539499cb3c8702c3a47f870 (diff)
downloadllvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.zip
llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.tar.gz
llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.tar.bz2
Fix Windows build using portable types for formatting the log outputs
llvm-svn: 202723
Diffstat (limited to 'lldb/source/Commands/CommandObjectArgs.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectArgs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp
index 3b919d1..cbfd055 100644
--- a/lldb/source/Commands/CommandObjectArgs.cpp
+++ b/lldb/source/Commands/CommandObjectArgs.cpp
@@ -255,7 +255,7 @@ CommandObjectArgs::DoExecute (Args& args, CommandReturnObject &result)
for (arg_index = 0; arg_index < num_args; ++arg_index)
{
- result.GetOutputStream ().Printf ("%zu (%s): ", arg_index, args.GetArgumentAtIndex (arg_index));
+ result.GetOutputStream ().Printf ("%" PRIu64 " (%s): ", (uint64_t)arg_index, args.GetArgumentAtIndex (arg_index));
value_list.GetValueAtIndex (arg_index)->Dump (&result.GetOutputStream ());
result.GetOutputStream ().Printf("\n");
}