From be90622cbcd6520254b911da4ffbca102d59abb6 Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 27 Mar 2023 08:49:34 +0000 Subject: Drop unnecessary parentheses. ok jsing --- src/lib/libcrypto/bn/bn_gf2m.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib/libcrypto/bn/bn_gf2m.c b/src/lib/libcrypto/bn/bn_gf2m.c index 5ee353087d..c90c9f64de 100644 --- a/src/lib/libcrypto/bn/bn_gf2m.c +++ b/src/lib/libcrypto/bn/bn_gf2m.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_gf2m.c,v 1.29 2022/11/30 01:47:19 jsing Exp $ */ +/* $OpenBSD: bn_gf2m.c,v 1.30 2023/03/27 08:49:34 tb Exp $ */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * @@ -964,10 +964,10 @@ BN_GF2m_mod_exp_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const int p[], 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); + return BN_copy(r, a) != NULL; BN_CTX_start(ctx); if ((u = BN_CTX_get(ctx)) == NULL) -- cgit v1.2.3-55-g6feb