From 95f76aa7302911d68088e14915a7f01de1de2fe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Mon, 18 Apr 2022 23:12:52 +0800 Subject: [PATCH] fix error: expected expression before 'for' --- md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md5.c b/md5.c index 91699b5..6c5b6f0 100644 --- a/md5.c +++ b/md5.c @@ -51,7 +51,7 @@ static uint32_t to_uint32(const uint8_t *bytes) { #ifdef WORDS_BIGENDIAN /* break chunk into sixteen 32-bit words w[j], 0 ≤ j ≤ 15 */ #define break_chunk_into_w(trunk)\ - (for(i = 0; i < 16; i++) w[i] = to_uint32((trunk) + i*4)) + for(i = 0; i < 16; i++) w[i] = to_uint32((trunk) + i*4) #else /* break chunk into sixteen 32-bit words w[j], 0 ≤ j ≤ 15 */ #define break_chunk_into_w(trunk) (w = (uint32_t*)(trunk))