Fix a trivial coding style nit in sm2_sign.c

Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Andy Polyakov <appro@openssl.org>
GH: #6787
This commit is contained in:
Paul Yang 2018-07-20 00:55:20 +08:00 committed by Kurt Roeckx
parent feac7a1c8b
commit 9e4c977748

View file

@ -111,7 +111,7 @@ static ECDSA_SIG *sm2_sig_gen(const EC_KEY *key, const BIGNUM *e)
for (;;) {
if (!BN_priv_rand_range(k, order)) {
SM2err(SM2_F_SM2_SIG_GEN, ERR_R_INTERNAL_ERROR);
goto done;
goto done;
}
if (!EC_POINT_mul(group, kG, k, NULL, NULL, ctx)