From 99fbc07600b16093ac2875a461a1c086ae1db5ee Mon Sep 17 00:00:00 2001 From: Deepak Panickal Date: Mon, 3 Mar 2014 15:39:47 +0000 Subject: Fix Windows build using portable types for formatting the log outputs llvm-svn: 202723 --- lldb/source/Interpreter/CommandHistory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Interpreter/CommandHistory.cpp') 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()); } } } -- cgit v1.2.3