X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fm_mdc2.c;h=36c4e9b1343688d7f5b10b3ee50e90d37b0bc8ae;hp=14e8175790e9ff8b0018a6e5f6288c5739bb73d6;hb=9e0aad9fd60635e240f7742fa1497eced6f1cd0b;hpb=60a938c6bca4c0890ed2d320e29fb43c970094d5 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)