aboutsummaryrefslogtreecommitdiffstats
path: root/md5c.c
diff options
context:
space:
mode:
Diffstat (limited to 'md5c.c')
-rw-r--r--md5c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/md5c.c b/md5c.c
index ae36de49..61fd2fe7 100644
--- a/md5c.c
+++ b/md5c.c
@@ -56,7 +56,7 @@ void MD5Init(struct MD5Context *ctx)
*/
void MD5Update(struct MD5Context *ctx, const void *buf_, unsigned len)
{
- const unsigned char *buf = buf_;
+ const unsigned char *buf = (const unsigned char *)buf_;
register uint32 t;
/* Update bitcount */