dbms: development.

This commit is contained in:
Alexey Milovidov 2009-07-29 17:34:06 +00:00
parent eed5be3979
commit 777299ae48
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace DB
void writeVarUInt(UInt x, std::ostream & ostr)
{
static char buf[9];
char buf[9];
buf[0] = static_cast<Poco::UInt8>(x | 0x80);
if (x >= (1ULL << 7))