[svn r158] fixed bug with console integer output: buffer was too small

This commit is contained in:
Christian Kamm
2008-03-24 20:49:21 +01:00
parent cc914ed4b2
commit 3804b99e41

View File

@@ -77,7 +77,7 @@ struct Console
// emit an integer to the console
Console opCall (size_t i)
{
char[20] tmp = void;
char[25] tmp = void;
return console (intToUtf8 (tmp, i));
}