From: tb Date: Sat, 18 Mar 2023 13:04:02 +0000 (+0000) Subject: KNF: some missing spaces after comma X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c375b44510adb19ba11e588a35b807c072be3987;p=openbsd KNF: some missing spaces after comma --- diff --git a/regress/lib/libcrypto/bn/bn_mod_exp.c b/regress/lib/libcrypto/bn/bn_mod_exp.c index ba70fdee515..67445c37b32 100644 --- a/regress/lib/libcrypto/bn/bn_mod_exp.c +++ b/regress/lib/libcrypto/bn/bn_mod_exp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_mod_exp.c,v 1.14 2023/03/18 09:09:11 tb Exp $ */ +/* $OpenBSD: bn_mod_exp.c,v 1.15 2023/03/18 13:04:02 tb Exp $ */ /* * Copyright (c) 2022,2023 Theo Buehler @@ -29,9 +29,9 @@ static const struct mod_exp_zero_test { const char *name; - int (*mod_exp_fn)(BIGNUM *,const BIGNUM *, const BIGNUM *, + int (*mod_exp_fn)(BIGNUM *, const BIGNUM *, const BIGNUM *, const BIGNUM *, BN_CTX *); - int (*mod_exp_mont_fn)(BIGNUM *,const BIGNUM *, const BIGNUM *, + int (*mod_exp_mont_fn)(BIGNUM *, const BIGNUM *, const BIGNUM *, const BIGNUM *, BN_CTX *, BN_MONT_CTX *); } mod_exp_zero_test_data[] = { INIT_MOD_EXP_FN(BN_mod_exp), @@ -180,9 +180,9 @@ run_bn_mod_exp_zero_tests(void) static const struct mod_exp_test { const char *name; - int (*mod_exp_fn)(BIGNUM *,const BIGNUM *, const BIGNUM *, + int (*mod_exp_fn)(BIGNUM *, const BIGNUM *, const BIGNUM *, const BIGNUM *, BN_CTX *); - int (*mod_exp_mont_fn)(BIGNUM *,const BIGNUM *, const BIGNUM *, + int (*mod_exp_mont_fn)(BIGNUM *, const BIGNUM *, const BIGNUM *, const BIGNUM *, BN_CTX *, BN_MONT_CTX *); } mod_exp_fn[] = { INIT_MOD_EXP_FN(BN_mod_exp),