aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/twofish.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/twofish.c')
-rw-r--r--cipher/twofish.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cipher/twofish.c b/cipher/twofish.c
index fa84e26f1..12982e123 100644
--- a/cipher/twofish.c
+++ b/cipher/twofish.c
@@ -987,7 +987,8 @@ twofish_get_info (int algo, size_t *keylen,
*keylen = algo==10? 256 : 128;
*blocksize = 16;
*contextsize = sizeof (TWOFISH_context);
- *(int (**)(const TWOFISH_context*, const byte*, unsigned))r_setkey
+
+ *(int (**)(TWOFISH_context*, const byte*, const unsigned))r_setkey
= twofish_setkey;
*(void (**)(const TWOFISH_context*, byte*, const byte*))r_encrypt
= twofish_encrypt;