summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-02-02 07:46:19 +0000
committerAndy Polyakov <appro@openssl.org>2012-02-02 07:46:19 +0000
commitd06f047b04dbdcd151efc620bf91253f0d70117e (patch)
tree3cf53ad29d97c48f5db8f5fe2a77266fe0035332
parentddc899bada0b816f8a20360b7bc63750bc0361f5 (diff)
downloadopenssl-new-d06f047b04dbdcd151efc620bf91253f0d70117e.tar.gz
bn_nist.c: make new optimized code dependent on BN_LLONG [from HEAD].
-rw-r--r--crypto/bn/bn_nist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_nist.c b/crypto/bn/bn_nist.c
index 880989dd5f..43caee4770 100644
--- a/crypto/bn/bn_nist.c
+++ b/crypto/bn/bn_nist.c
@@ -341,7 +341,7 @@ static void nist_cp_bn(BN_ULONG *buf, 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 */