diff options
author | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-02 12:16:06 +0200 |
---|---|---|
committer | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-05 20:39:13 +0200 |
commit | 6086851fc1d8e0d149d2ec4acd7521f7c5d860ac (patch) | |
tree | 548181f3ac29f7c7f7ae0f9a50a78c3a9e675625 /libtomcrypt/src/ciphers/twofish/twofish.c | |
parent | d9d97969a35e437a8af7a1793b484783360ceca7 (diff) |
Fix unused parameters warnings [-Werror=unused-parameter]
Diffstat (limited to 'libtomcrypt/src/ciphers/twofish/twofish.c')
-rw-r--r-- | libtomcrypt/src/ciphers/twofish/twofish.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libtomcrypt/src/ciphers/twofish/twofish.c b/libtomcrypt/src/ciphers/twofish/twofish.c index 9e6d0d4..8f81bdd 100644 --- a/libtomcrypt/src/ciphers/twofish/twofish.c +++ b/libtomcrypt/src/ciphers/twofish/twofish.c @@ -684,6 +684,7 @@ int twofish_test(void) */ void twofish_done(symmetric_key *skey) { + (void)skey; } /** |