Commit 1c246f6b authored by Andy Polyakov's avatar Andy Polyakov Committed by Matt Caswell
Browse files

bn/bn_recp.c: make it indent-friendly.



Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent 802e6cfc
Loading
Loading
Loading
Loading
+8 −8
Original line number Original line Diff line number Diff line
@@ -167,8 +167,8 @@ int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,


	/* Nr := round(2^i / N) */
	/* Nr := round(2^i / N) */
	if (i != recp->shift)
	if (i != recp->shift)
		recp->shift=BN_reciprocal(&(recp->Nr),&(recp->N),
		recp->shift=BN_reciprocal(&(recp->Nr),&(recp->N),i,ctx);
			i,ctx); /* BN_reciprocal returns i, or -1 for an error */
	/* BN_reciprocal could have returned -1 for an error */
	if (recp->shift == -1) goto err;
	if (recp->shift == -1) goto err;


    /*-
    /*-