diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-02-14 23:09:40 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-02-14 23:09:40 +0800 |
commit | 370d4c7cd52c8a8c40f82a01ae0c8a483856935a (patch) | |
tree | 7b0609ad489b25e12ff421970590d81c624ac56c /libtomcrypt | |
parent | 1700987bfca9442267eb70f4833b12c2d1168884 (diff) |
fix unused variable from merge
Diffstat (limited to 'libtomcrypt')
-rw-r--r-- | libtomcrypt/src/ciphers/aes/aes.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libtomcrypt/src/ciphers/aes/aes.c b/libtomcrypt/src/ciphers/aes/aes.c index 4d74a9d..47e8eeb 100644 --- a/libtomcrypt/src/ciphers/aes/aes.c +++ b/libtomcrypt/src/ciphers/aes/aes.c @@ -124,7 +124,6 @@ int SETUP(const unsigned char *key, int keylen, int num_rounds, symmetric_key *s int i; ulong32 temp, *rk; #ifndef ENCRYPT_ONLY - int j; ulong32 *rrk; #endif LTC_ARGCHK(key != NULL); |