From 0208ab2e3fd0eb7781cbe1c1b906df610261a08c Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Thu, 2 Feb 2012 07:46:05 +0000 Subject: [PATCH] bn_nist.c: make new optimized code dependent on BN_LLONG. --- crypto/bn/bn_nist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bn_nist.c b/crypto/bn/bn_nist.c index 3e3caae08b..9f12f06fa5 100644 --- a/crypto/bn/bn_nist.c +++ b/crypto/bn/bn_nist.c @@ -364,7 +364,7 @@ static void nist_cp_bn(BN_ULONG *buf, const BN_ULONG *a, int top) #define bn_32_set_0(to, n) (to)[n] = (BN_ULONG)0; # if defined(_WIN32) && !defined(__GNUC__) # define NIST_INT64 __int64 -# else +# elif defined(BN_LLONG) # define NIST_INT64 long long # endif #endif /* BN_BITS2 != 64 */ -- 2.34.1