Remove parentheses of return.
[openssl.git] / crypto / bn / bn_gf2m.c
index f164f467fb1de887a33a47c9d84fcbcb0be23e73..16868f79a0fd2ccd448697425f4b8ee271293649 100644 (file)
@@ -904,7 +904,7 @@ int BN_GF2m_mod_exp_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
     bn_check_top(b);
 
     if (BN_is_zero(b))
-        return (BN_one(r));
+        return BN_one(r);
 
     if (BN_abs_is_word(b, 1))
         return (BN_copy(r, a) != NULL);