From 777299ae4817afce7e1e11bc2e254b219283a87d Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Wed, 29 Jul 2009 17:34:06 +0000 Subject: [PATCH] dbms: development. --- dbms/src/VarInt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/VarInt.cpp b/dbms/src/VarInt.cpp index f355b3f7b6..eadc73fa0c 100644 --- a/dbms/src/VarInt.cpp +++ b/dbms/src/VarInt.cpp @@ -9,7 +9,7 @@ namespace DB void writeVarUInt(UInt x, std::ostream & ostr) { - static char buf[9]; + char buf[9]; buf[0] = static_cast(x | 0x80); if (x >= (1ULL << 7))