summaryrefslogtreecommitdiff
path: root/gf2n.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gf2n.cpp')
-rw-r--r--gf2n.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gf2n.cpp b/gf2n.cpp
index b7b4bf9..93d5ede 100644
--- a/gf2n.cpp
+++ b/gf2n.cpp
@@ -143,7 +143,7 @@ void PolynomialMod2::Decode(BufferedTransformation &bt, unsigned int inputLen)
{
byte b;
bt.Get(b);
- reg[(i-1)/WORD_SIZE] |= b << ((i-1)%WORD_SIZE)*8;
+ reg[(i-1)/WORD_SIZE] |= word(b) << ((i-1)%WORD_SIZE)*8;
}
}