changeset 4146:94da5b69f87c draft

Specify MD5_BLOCK_LENGTH as ULL to try and work around a compiler issue.
author Roy Marples <roy@marples.name>
date Tue, 03 Oct 2017 23:51:17 +0100
parents 7e27559d009a
children dba5fa9d56cc
files compat/crypt/md5.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/compat/crypt/md5.h	Tue Oct 03 23:40:50 2017 +0100
+++ b/compat/crypt/md5.h	Tue Oct 03 23:51:17 2017 +0100
@@ -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) */