Mercurial > hg > xemacs-beta
diff src/md5.c @ 280:7df0dd720c89 r21-0b38
Import from CVS: tag r21-0b38
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:32:22 +0200 |
parents | 6330739388db |
children | 8626e4521993 |
line wrap: on
line diff
--- a/src/md5.c Mon Aug 13 10:31:30 2007 +0200 +++ b/src/md5.c Mon Aug 13 10:32:22 2007 +0200 @@ -312,7 +312,7 @@ md5_process_block (CONST void *buffer, size_t len, struct md5_ctx *ctx) { md5_uint32 correct_words[16]; - const md5_uint32 *words = buffer; + const md5_uint32 *words = (const md5_uint32 *) buffer; size_t nwords = len / sizeof (md5_uint32); const md5_uint32 *endp = words + nwords; md5_uint32 A = ctx->A;