summaryrefslogtreecommitdiff
path: root/rijndael.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-03 20:44:33 -0400
committerJeffrey Walton <noloader@gmail.com>2019-10-03 20:44:33 -0400
commit883dbce74a3d6d66fd0f57f383284aef378db47c (patch)
treeebb1b1599a1e2f147a0db4dd774b30f50f553014 /rijndael.cpp
parent589c25264a3b15fae101962f8a8a334a03c90075 (diff)
downloadcryptopp-git-883dbce74a3d6d66fd0f57f383284aef378db47c.tar.gz
Remove double semicolons after sed'ing defines
Also see https://github.com/weidai11/cryptopp/issues/889
Diffstat (limited to 'rijndael.cpp')
-rw-r--r--rijndael.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rijndael.cpp b/rijndael.cpp
index 258fb952..1c3bc295 100644
--- a/rijndael.cpp
+++ b/rijndael.cpp
@@ -299,7 +299,7 @@ void Rijndael::Base::FillDecTable()
word32 y = word32(fd(x))<<8 | word32(f9(x))<<16 | word32(fe(x))<<24;
Td[i] = word64(y | fb(x))<<32 | y | x;
#else
- word32 y = fb(x) | word32(fd(x))<<8 | word32(f9(x))<<16 | word32(fe(x))<<24;;
+ word32 y = fb(x) | word32(fd(x))<<8 | word32(f9(x))<<16 | word32(fe(x))<<24;
for (int j=0; j<4; j++)
{
Td[i+j*256] = y;