size_t-fication of message digest APIs. We should size_t-fy more APIs...
[openssl.git] / crypto / evp / m_dss1.c
index 6b65bfd54b88ec7ef15e430f70ff3008c7afdb21..a20056f04b62876a6696ed41e09cfccdcfa809ec 100644 (file)
@@ -69,7 +69,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)