X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/2921991916ba2362d054111a0d041ff170c899c1..e91d142c49f0ff129a087f2b66380bd7c5da0617:/symm/md5.c diff --git a/symm/md5.c b/symm/md5.c index f3b37e19..cf6b3355 100644 --- a/symm/md5.c +++ b/symm/md5.c @@ -204,7 +204,7 @@ void md5_set(md5_ctx *ctx, const void *buf, unsigned long count) ctx->d = LOAD32_L(p + 12); ctx->off = 0; ctx->nl = U32(count); - ctx->nh = U32(((count & ~MASK32) >> 16) >> 16); + ctx->nh = U32(((count & ~(unsigned long)MASK32) >> 16) >> 16); } /* --- @md5_hash@ --- *