From 05cb2b9c62b323a1278c81b6cbe00b2e4186b4f4 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Thu, 18 Mar 2010 10:10:32 +0100 Subject: Fix lots of warnings, most around string literals... ...that were converted to char* when they should have been converted to const char *. Use braces for empty if/else statements. --- md5.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'md5.h') diff --git a/md5.h b/md5.h index 19530bca..83b748c4 100644 --- a/md5.h +++ b/md5.h @@ -22,7 +22,7 @@ struct MD5Context { void MD5Init(struct MD5Context *context); void MD5Update(struct MD5Context *context, const void *buf, unsigned len); void MD5Final(void *digest, struct MD5Context *context); -void MD5Transform(uint32 buf[4], uint32 const in[16]); +void MD5Transform(uint32 buf[], uint32 const in[]); char *MD5Digest (unsigned const char *s); -- cgit v1.2.3