size_t-fication of message digest APIs. We should size_t-fy more APIs...
[openssl.git] / crypto / evp / m_dss.c
index c4c5f0bbe691f71fe9ff0d9b05489c5ebc68aa93..020f19c44bb656a447d5c500eb0d3404b0a8352f 100644 (file)
@@ -67,7 +67,7 @@
 static int init(EVP_MD_CTX *ctx)
        { return SHA1_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 SHA1_Update(ctx->md_data,data,count); }
 
 static int final(EVP_MD_CTX *ctx,unsigned char *md)