]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/bn/bn_sqrt.c
Remove parentheses of return.
[thirdparty/openssl.git] / crypto / bn / bn_sqrt.c
index 86fc3a04807f2c33a5d5ecdada809f4275487918..37cdaf87d58bd791475ef801dbdd260720b29264 100644 (file)
@@ -39,7 +39,7 @@ BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
         }
 
         BNerr(BN_F_BN_MOD_SQRT, BN_R_P_IS_NOT_PRIME);
-        return (NULL);
+        return NULL;
     }
 
     if (BN_is_zero(a) || BN_is_one(a)) {