# HG changeset patch # User ChristianK # Date 1206388161 -3600 # Node ID e984333d6ac6f825fb72e5f39b11380eb48264e5 # Parent d11848349f9736a6e759fbd02412af17fc5f43b9 [svn r158] fixed bug with console integer output: buffer was too small diff -r d11848349f97 -r e984333d6ac6 tango/lib/compiler/llvmdc/util/console.d --- a/tango/lib/compiler/llvmdc/util/console.d Mon Mar 24 20:48:40 2008 +0100 +++ b/tango/lib/compiler/llvmdc/util/console.d Mon Mar 24 20:49:21 2008 +0100 @@ -77,7 +77,7 @@ // emit an integer to the console Console opCall (size_t i) { - char[20] tmp = void; + char[25] tmp = void; return console (intToUtf8 (tmp, i)); }