Index: runtime/platform/assert.cc |
=================================================================== |
--- runtime/platform/assert.cc (revision 43843) |
+++ runtime/platform/assert.cc (working copy) |
@@ -22,7 +22,7 @@ |
va_list arguments; |
va_start(arguments, format); |
- char buffer[2 * KB]; |
+ char buffer[4 * KB]; |
vsnprintf(buffer, sizeof(buffer), format, arguments); |
va_end(arguments); |
stream << buffer << std::endl; |