From 877e8e970c3c94c43ce1db50fdbb8e9b0342b90e Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Thu, 15 Dec 2005 22:31:16 +0000 Subject: [PATCH] Allow for bn(64,32) on LP64 platforms. --- crypto/bn/bn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index ca5861703e..baf72c36e2 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -174,8 +174,8 @@ extern "C" { # define BN_ULLONG unsigned long long # endif #endif -#define BN_ULONG unsigned long -#define BN_LONG long +#define BN_ULONG unsigned int +#define BN_LONG int #define BN_BITS 64 #define BN_BYTES 4 #define BN_BITS2 32 -- 2.25.1