Commit a68c7b91 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

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

parent 5cabcf96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)