crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[musl] / src / crypt / crypt_md5.c
index 02f2244..70ab8b9 100644 (file)
@@ -118,7 +118,7 @@ static void md5_init(struct md5 *s)
        s->h[3] = 0x10325476;
 }
 
-static void md5_sum(struct md5 *s, uint8_t md[16])
+static void md5_sum(struct md5 *s, uint8_t *md)
 {
        int i;