Commit 95475b1c authored by Richard Levitte's avatar Richard Levitte
Browse files

As in 0.9.8-dev, make sure we use unsigned constants, or some

compilers may complain.
parent 86f941c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -896,7 +896,7 @@ int ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point,
		}
	form = buf[0];
	y_bit = form & 1;
	form = form & ~1;
	form = form & ~1U;
	if ((form != 0)	&& (form != POINT_CONVERSION_COMPRESSED)
		&& (form != POINT_CONVERSION_UNCOMPRESSED)
		&& (form != POINT_CONVERSION_HYBRID))