From 1a85fc497db85e1bf8b026d51cf6e5dec391d224 Mon Sep 17 00:00:00 2001 From: DRC Date: Mon, 21 May 2018 12:07:40 -0500 Subject: [PATCH] Additional code formatting tweaks ... detected with an improved version of our checkstyle script --- md5/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md5/md5.c b/md5/md5.c index cf8aae6..9ef5daa 100644 --- a/md5/md5.c +++ b/md5/md5.c @@ -58,7 +58,7 @@ static void byteReverse(unsigned char *buf, unsigned int longs) do { t = (uint32)((unsigned int)buf[3] << 8 | buf[2]) << 16 | ((unsigned int)buf[1] << 8 | buf[0]); - *(uint32 *) buf = t; + *(uint32 *)buf = t; buf += 4; } while (--longs); } -- 2.50.1