diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c index bd1d02ba0a..d0e989b2dc 100644 --- a/crypto/bn/bn_lib.c +++ b/crypto/bn/bn_lib.c @@ -252,13 +252,13 @@ BIGNUM *BN_new(void) return ret; } - BIGNUM *BN_secure_new(void) - { - BIGNUM *ret = BN_new(); - if (ret != NULL) - ret->flags |= BN_FLG_SECURE; - return ret; - } +BIGNUM *BN_secure_new(void) +{ + BIGNUM *ret = BN_new(); + if (ret != NULL) + ret->flags |= BN_FLG_SECURE; + return ret; +} /* This is used by bn_expand2() */ /* The caller MUST check that words > b->dmax before calling this */