diff options
Diffstat (limited to 'lib/rc4.c')
-rw-r--r-- | lib/rc4.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ #include "rc4.h" -void rc4_setup( struct rc4_state *s, unsigned char *key, int length ) +void rc4_setup( struct rc4_state *s, const unsigned char *key, int length ) { int i, j, k, *m, a; |