From 700b814549c8c158c82466116cfc545b00f647c3 Mon Sep 17 00:00:00 2001 From: FdaSilvaYY Date: Thu, 28 Jul 2016 21:15:52 +0200 Subject: Fix some style issues... extra spacing and 80 cols Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/1366) --- crypto/bn/bn_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/bn/bn_lib.c') diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c index b606cc9c32..0be42f8350 100644 --- a/crypto/bn/bn_lib.c +++ b/crypto/bn/bn_lib.c @@ -170,7 +170,7 @@ int BN_num_bits(const BIGNUM *a) static void bn_free_d(BIGNUM *a) { - if (BN_get_flags(a,BN_FLG_SECURE)) + if (BN_get_flags(a, BN_FLG_SECURE)) OPENSSL_secure_free(a->d); else OPENSSL_free(a->d); @@ -259,7 +259,7 @@ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words) BNerr(BN_F_BN_EXPAND_INTERNAL, BN_R_EXPAND_ON_STATIC_BIGNUM_DATA); return (NULL); } - if (BN_get_flags(b,BN_FLG_SECURE)) + if (BN_get_flags(b, BN_FLG_SECURE)) a = A = OPENSSL_secure_zalloc(words * sizeof(*a)); else a = A = OPENSSL_zalloc(words * sizeof(*a)); -- cgit v1.2.3