From: Roy Marples Date: Mon, 9 Jan 2023 11:16:13 +0000 (+0000) Subject: compat: Remove literal suffix from md5.h X-Git-Tag: v9.5.0~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a099fc439da1e53b0374d4199a5ef895036ee46d;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) */