From 63c17613ab808208c8a760fc750e0429c8e53a39 Mon Sep 17 00:00:00 2001 From: Cory Fields Date: Tue, 30 Sep 2014 16:29:01 -0400 Subject: tests: fix false-positive under win64 BN_ULONG isn't necessarily an unsigned long, as is the case on win64. --- src/test/bignum.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/bignum.h b/src/test/bignum.h index a75f5250fa..86980b2af6 100644 --- a/src/test/bignum.h +++ b/src/test/bignum.h @@ -63,11 +63,11 @@ public: int getint() const { - unsigned long n = BN_get_word(this); + BN_ULONG n = BN_get_word(this); if (!BN_is_negative(this)) - return (n > (unsigned long)std::numeric_limits::max() ? std::numeric_limits::max() : n); + return (n > (BN_ULONG)std::numeric_limits::max() ? std::numeric_limits::max() : n); else - return (n > (unsigned long)std::numeric_limits::max() ? std::numeric_limits::min() : -(int)n); + return (n > (BN_ULONG)std::numeric_limits::max() ? std::numeric_limits::min() : -(int)n); } void setint64(int64_t sn) -- cgit v1.2.3