From: Roy Marples Date: Mon, 9 Jan 2023 11:16:13 +0000 (+0000) Subject: compat: Remove literal suffix from md5.h X-Git-Tag: v10.0.0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b74c4b2e4e8989e2c4f609bb3a7a6ff09660f51;p=thirdparty%2Fdhcpcd.git compat: Remove literal suffix from md5.h Modern compilers no longer complain without it, but do with it. --- 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) */