From 6e32682cd23d49bbf50a502d3485ff85a3faf494 Mon Sep 17 00:00:00 2001 From: tb <> Date: Sat, 18 Mar 2023 13:04:02 +0000 Subject: KNF: some missing spaces after comma --- src/regress/lib/libcrypto/bn/bn_mod_exp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/regress/lib/libcrypto/bn/bn_mod_exp.c b/src/regress/lib/libcrypto/bn/bn_mod_exp.c index ba70fdee51..67445c37b3 100644 --- a/src/regress/lib/libcrypto/bn/bn_mod_exp.c +++ b/src/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), -- cgit v1.2.3-55-g6feb