From 7b74c4b2e4e8989e2c4f609bb3a7a6ff09660f51 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 9 Jan 2023 11:16:13 +0000 Subject: [PATCH] compat: Remove literal suffix from md5.h Modern compilers no longer complain without it, but do with it. --- compat/crypt/md5.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/crypt/md5.h b/compat/crypt/md5.h index dd156163..402309c3 100644 --- a/compat/crypt/md5.h +++ b/compat/crypt/md5.h @@ -19,7 +19,7 @@ #define MD5_H_ #define MD5_DIGEST_LENGTH 16 -#define MD5_BLOCK_LENGTH 64ULL +#define MD5_BLOCK_LENGTH 64 typedef struct MD5Context { uint32_t state[4]; /* state (ABCD) */ -- 2.47.2