From: Roy Marples Date: Tue, 3 Oct 2017 22:51:17 +0000 (+0100) Subject: Specify MD5_BLOCK_LENGTH as ULL to try and work around a compiler issue. X-Git-Tag: v7.0.0-rc3~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d2dd6ac797a477cf0b7e7747974eb95c4d6b87d;p=thirdparty%2Fdhcpcd.git Specify MD5_BLOCK_LENGTH as ULL to try and work around a compiler issue. --- diff --git a/compat/crypt/md5.h b/compat/crypt/md5.h index 402309c3..dd156163 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 64 +#define MD5_BLOCK_LENGTH 64ULL typedef struct MD5Context { uint32_t state[4]; /* state (ABCD) */