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