summaryrefslogtreecommitdiff
path: root/crypto/evp/m_md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/m_md5.c')
-rw-r--r--crypto/evp/m_md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/m_md5.c b/crypto/evp/m_md5.c
index a214315abe..21288ee636 100644
--- a/crypto/evp/m_md5.c
+++ b/crypto/evp/m_md5.c
@@ -70,7 +70,7 @@
static int init(EVP_MD_CTX *ctx)
{ return MD5_Init(ctx->md_data); }
-static int update(EVP_MD_CTX *ctx,const void *data,unsigned long count)
+static int update(EVP_MD_CTX *ctx,const void *data,size_t count)
{ return MD5_Update(ctx->md_data,data,count); }
static int final(EVP_MD_CTX *ctx,unsigned char *md)