From c6572a213a04c50d53dcc52bf3af2c51b1a6d23e Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Sat, 13 Mar 2021 16:23:34 +0300 Subject: [PATCH] fixed gcc compilation issue with RIPEMD-160 --- src/crypto/RIPEMD160.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crypto/RIPEMD160.h b/src/crypto/RIPEMD160.h index 94dc0ceb..f0ea97ef 100644 --- a/src/crypto/RIPEMD160.h +++ b/src/crypto/RIPEMD160.h @@ -37,12 +37,12 @@ #define RMD160H /********************************************************************/ - +#include /* typedef 8 and 32 bit types, resp. */ /* adapt these, if necessary, for your operating system and compiler */ typedef unsigned char byte; -typedef unsigned long dword; +typedef uint32_t dword; /* if this line causes a compiler error, adapt the defintion of dword above */