提交 a68c7b91 编写于 作者: A Andy Polyakov

bn_lib.c: [re-]fix Win64 compiler warning.

上级 5cabcf96
......@@ -763,7 +763,7 @@ int BN_is_bit_set(const BIGNUM *a, int n)
i=n/BN_BITS2;
j=n%BN_BITS2;
if (a->top <= i) return 0;
return(((a->d[i])>>j)&((BN_ULONG)1)==1);
return (int)(((a->d[i])>>j)&((BN_ULONG)1));
}
int BN_mask_bits(BIGNUM *a, int n)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册