From 883dbce74a3d6d66fd0f57f383284aef378db47c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 3 Oct 2019 20:44:33 -0400 Subject: Remove double semicolons after sed'ing defines Also see https://github.com/weidai11/cryptopp/issues/889 --- rijndael.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rijndael.cpp') 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; -- cgit v1.2.1