commit | 99fbc07600b16093ac2875a461a1c086ae1db5ee | [log] [tgz] |
---|---|---|
author | Deepak Panickal <deepak@codeplay.com> | Mon Mar 03 15:39:47 2014 +0000 |
committer | Deepak Panickal <deepak@codeplay.com> | Mon Mar 03 15:39:47 2014 +0000 |
tree | caa3aa183d1a4d2acc0021abc38de58c260fb9e7 | |
parent | 6fa32b6f545477a2d539499cb3c8702c3a47f870 [diff] [blame] |
Fix Windows build using portable types for formatting the log outputs llvm-svn: 202723
diff --git a/lldb/source/Core/Stream.cpp b/lldb/source/Core/Stream.cpp index 49c15d6..075b705 100644 --- a/lldb/source/Core/Stream.cpp +++ b/lldb/source/Core/Stream.cpp
@@ -479,7 +479,7 @@ va_list args; va_list args_copy; va_start (args, format); - va_copy (args, args_copy); // Copy this so we + va_copy (args_copy,args); // Copy this so we char str[1024]; size_t bytes_written = 0;