From 05eb5fa0f1eb4c0aa335731dd047b5f6007c7374 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 30 May 2012 14:18:45 -0700 Subject: [PATCH] Typo. --- src/SerializedTypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SerializedTypes.cpp b/src/SerializedTypes.cpp index 6fc4183535..8c783f9cc0 100644 --- a/src/SerializedTypes.cpp +++ b/src/SerializedTypes.cpp @@ -196,7 +196,7 @@ void STVector256::add(Serializer& s) const { int size = mValue.size(); if (!size) s.addVL(NULL, 0); - s.addVL(mValue[0].begin(), mValue.size() & (256 / 8)); + s.addVL(mValue[0].begin(), mValue.size() * (256 / 8)); } //