From: Ari Johnson Date: Sat, 17 Feb 2007 20:21:18 +0000 (+0000) Subject: More 64-bit compatibility fixes X-Git-Tag: 0.73~213 X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=86cf0b386d3a4e36779ce15b2eee7b941be75a67;p=cobramush.git More 64-bit compatibility fixes --- 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);