 Chromium Code Reviews
 Chromium Code Reviews Issue 10826191:
  Improve the stack trace output to be more readable.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
    
  
    Issue 10826191:
  Improve the stack trace output to be more readable.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/| 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; |