summaryrefslogtreecommitdiff
path: root/wake.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-06-09 09:49:02 -0400
committerJeffrey Walton <noloader@gmail.com>2015-06-09 09:49:02 -0400
commit44015c26ba215f955b1e653f9c8f3c894a532707 (patch)
treec104c70ad2fe5fb5569b4c8131c2d73f63e69691 /wake.cpp
parent242187d80d809a6320f2a2cad1e6ec665c1c2278 (diff)
downloadcryptopp-git-44015c26ba215f955b1e653f9c8f3c894a532707.tar.gz
Cleared ill-formed conversion in C++11
Diffstat (limited to 'wake.cpp')
-rw-r--r--wake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wake.cpp b/wake.cpp
index c34165b8..e0f194e6 100644
--- a/wake.cpp
+++ b/wake.cpp
@@ -23,7 +23,7 @@ void WAKE_Base::GenKey(word32 k0, word32 k1, word32 k2, word32 k3)
signed int x, z, p;
// x and z were declared as "long" in Wheeler's paper, which is a signed type. I don't know if that was intentional, but it's too late to change it now. -- Wei 7/4/2010
CRYPTOPP_COMPILE_ASSERT(sizeof(x) == 4);
- static int tt[10]= {
+ static unsigned int tt[10]= {
0x726a8f3b, // table
0xe69a3b5c,
0xd3c71fe5,