tests: fix false-positive under win64

BN_ULONG isn't necessarily an unsigned long, as is the case on win64.
This commit is contained in:
Cory Fields 2014-09-30 16:29:01 -04:00
parent 4b2b78b9f2
commit 63c17613ab
1 changed files with 3 additions and 3 deletions

View File

@ -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<int>::max() ? std::numeric_limits<int>::max() : n);
return (n > (BN_ULONG)std::numeric_limits<int>::max() ? std::numeric_limits<int>::max() : n);
else
return (n > (unsigned long)std::numeric_limits<int>::max() ? std::numeric_limits<int>::min() : -(int)n);
return (n > (BN_ULONG)std::numeric_limits<int>::max() ? std::numeric_limits<int>::min() : -(int)n);
}
void setint64(int64_t sn)