diff libtomcrypt/src/ciphers/twofish/twofish.c @ 1091:eef377591301

Fix unused parameters warnings [-Werror=unused-parameter]
author Gaël PORTAY <gael.portay@gmail.com>
date Sat, 02 May 2015 12:16:06 +0200
parents 0cbe8f6dbf9e
children f849a5ca2efc
line wrap: on
line diff
--- a/libtomcrypt/src/ciphers/twofish/twofish.c	Sat May 02 11:26:22 2015 +0200
+++ b/libtomcrypt/src/ciphers/twofish/twofish.c	Sat May 02 12:16:06 2015 +0200
@@ -684,6 +684,7 @@
 */
 void twofish_done(symmetric_key *skey)
 {
+   (void)skey;
 }
 
 /**