summaryrefslogtreecommitdiff
path: root/crypto/evp/m_mdc2.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/m_mdc2.c')
-rw-r--r--crypto/evp/m_mdc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/m_mdc2.c b/crypto/evp/m_mdc2.c
index 14e8175790..36c4e9b134 100644
--- a/crypto/evp/m_mdc2.c
+++ b/crypto/evp/m_mdc2.c
@@ -70,7 +70,7 @@
static int init(EVP_MD_CTX *ctx)
{ return MDC2_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 MDC2_Update(ctx->md_data,data,count); }
static int final(EVP_MD_CTX *ctx,unsigned char *md)