From 9e0aad9fd60635e240f7742fa1497eced6f1cd0b Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sat, 15 May 2004 11:29:55 +0000 Subject: size_t-fication of message digest APIs. We should size_t-fy more APIs... --- crypto/evp/m_mdc2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/evp/m_mdc2.c') 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) -- cgit v1.2.3