From fb03addd3a26a89a0557bd62f7aae02c63c256a9 Mon Sep 17 00:00:00 2001 From: Ari Johnson Date: Sat, 17 Feb 2007 20:21:18 +0000 Subject: [PATCH] More 64-bit compatibility fixes (cherry picked from commit 86cf0b386d3a4e36779ce15b2eee7b941be75a67) --- src/funcrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/funcrypt.c b/src/funcrypt.c index 52e02a0..dfd5e10 100644 --- a/src/funcrypt.c +++ b/src/funcrypt.c @@ -156,7 +156,7 @@ FUNCTION(fun_digest) EVP_MD_CTX ctx; const EVP_MD *mp; unsigned char md[EVP_MAX_MD_SIZE]; - size_t n, len = 0; + unsigned n, len = 0; if ((mp = EVP_get_digestbyname(args[0])) == NULL) { safe_str(T("#-1 UNSUPPORTED DIGEST TYPE"), buff, bp); -- 2.30.2