From c375b44510adb19ba11e588a35b807c072be3987 Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 18 Mar 2023 13:04:02 +0000 Subject: [PATCH] KNF: some missing spaces after comma --- regress/lib/libcrypto/bn/bn_mod_exp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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), -- 2.20.1