the key argument is const, mark it as such

This commit is contained in:
Love Hornquist Astrand
2009-08-14 20:06:39 +02:00
parent fcdd38288b
commit 8ef2d2d11b
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@
}
void
RC4_set_key(RC4_KEY *key, const int len, unsigned char *data)
RC4_set_key(RC4_KEY *key, const int len, const unsigned char *data)
{
int i, j;