Code style: space after 'if'
[openssl.git] / crypto / bn / bn_rand.c
index 48de9cb7cac2b0f06fc60df09a2c4a3ccec91e92..9e78d4d42a14908999dfe5354a71800b7338fdb2 100644 (file)
@@ -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];