summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2008-10-31 20:20:54 +0000
committerAndy Polyakov <appro@openssl.org>2008-10-31 20:20:54 +0000
commit09a60c9833fa6800230e23a7e42a48832792e629 (patch)
tree63c43be78c50aa1abd8151d75c98a1300c859b15 /crypto/engine
parentb444ac3e6f04aec13aa0c19983291b0326feb7f9 (diff)
Fix warnings after commit#17578.
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/eng_openssl.c b/crypto/engine/eng_openssl.c
index 7c139ae2ef..9abb95cc22 100644
--- a/crypto/engine/eng_openssl.c
+++ b/crypto/engine/eng_openssl.c
@@ -238,7 +238,7 @@ static int test_rc4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
return 1;
}
static int test_rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
- const unsigned char *in, unsigned int inl)
+ const unsigned char *in, size_t inl)
{
#ifdef TEST_ENG_OPENSSL_RC4_P_CIPHER
fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_cipher() called\n");