From 3b38646d1345b5ec4ff7fd13c8b8bd8d46105b7e Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Thu, 16 Apr 2015 01:50:03 -0400 Subject: Code style: space after 'if' Reviewed-by: Matt Caswell --- crypto/bn/bn_rand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/bn') diff --git a/crypto/bn/bn_rand.c b/crypto/bn/bn_rand.c index 48de9cb7ca..9e78d4d42a 100644 --- a/crypto/bn/bn_rand.c +++ b/crypto/bn/bn_rand.c @@ -157,7 +157,7 @@ static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) unsigned char c; for (i = 0; i < bytes; i++) { - if(RAND_pseudo_bytes(&c, 1) < 0) + if (RAND_pseudo_bytes(&c, 1) < 0) goto err; if (c >= 128 && i > 0) buf[i] = buf[i - 1]; -- cgit v1.2.3