summaryrefslogtreecommitdiffstats
path: root/crypto/md5/md5test.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-07-22 10:25:52 +0000
committerAndy Polyakov <appro@openssl.org>2004-07-22 10:25:52 +0000
commitd58caee734298d61b2ec119bfa31bc42a9d55480 (patch)
treec55b81c23ef07763dc6f79a3687af259647c5e2e /crypto/md5/md5test.c
parente39c2548f522a9293376a19fdbe466514a882d16 (diff)
EVP_Digest is size_t-fied, clean up test programs accordingly.
Diffstat (limited to 'crypto/md5/md5test.c')
-rw-r--r--crypto/md5/md5test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md5/md5test.c b/crypto/md5/md5test.c
index 667b6be344..0628053fa7 100644
--- a/crypto/md5/md5test.c
+++ b/crypto/md5/md5test.c
@@ -106,7 +106,7 @@ int main(int argc, char *argv[])
i=1;
while (*P != NULL)
{
- EVP_Digest(&(P[0][0]),(unsigned long)strlen((char *)*P),md,NULL,EVP_md5(), NULL);
+ EVP_Digest(&(P[0][0]),strlen((char *)*P),md,NULL,EVP_md5(), NULL);
p=pt(md);
if (strcmp(p,(char *)*R) != 0)
{