diff options
author | Deepak Panickal <deepak@codeplay.com> | 2014-03-03 15:39:47 +0000 |
---|---|---|
committer | Deepak Panickal <deepak@codeplay.com> | 2014-03-03 15:39:47 +0000 |
commit | 99fbc07600b16093ac2875a461a1c086ae1db5ee (patch) | |
tree | caa3aa183d1a4d2acc0021abc38de58c260fb9e7 /lldb/source/Interpreter/CommandHistory.cpp | |
parent | 6fa32b6f545477a2d539499cb3c8702c3a47f870 (diff) | |
download | bcm5719-llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.tar.gz bcm5719-llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.zip |
Fix Windows build using portable types for formatting the log outputs
llvm-svn: 202723
Diffstat (limited to 'lldb/source/Interpreter/CommandHistory.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandHistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandHistory.cpp b/lldb/source/Interpreter/CommandHistory.cpp index 33971e3959c..7744ba95a7b 100644 --- a/lldb/source/Interpreter/CommandHistory.cpp +++ b/lldb/source/Interpreter/CommandHistory.cpp @@ -137,7 +137,7 @@ CommandHistory::Dump (Stream& stream, if (!hist_item.empty()) { stream.Indent(); - stream.Printf ("%4zu: %s\n", counter, hist_item.c_str()); + stream.Printf("%4" PRId64 ": %s\n", counter, hist_item.c_str()); } } } |