From c858fb0150f1e0a4536c83e7545a1f71c39a1bb1 Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 8 Jan 2025 20:13:52 +0000 Subject: Add a space after comma --- src/lib/libcrypto/bn/bn_recp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/libcrypto/bn/bn_recp.c b/src/lib/libcrypto/bn/bn_recp.c index 1658a13823..4905dffa88 100644 --- a/src/lib/libcrypto/bn/bn_recp.c +++ b/src/lib/libcrypto/bn/bn_recp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_recp.c,v 1.22 2025/01/08 20:12:18 tb Exp $ */ +/* $OpenBSD: bn_recp.c,v 1.23 2025/01/08 20:13:52 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -125,7 +125,7 @@ BN_reciprocal(BIGNUM *r, const BIGNUM *m, int len, BN_CTX *ctx) if (!BN_set_bit(t, len)) goto err; - if (!BN_div_ct(r, NULL, t,m, ctx)) + if (!BN_div_ct(r, NULL, t, m, ctx)) goto err; ret = len; @@ -193,7 +193,7 @@ BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, BN_RECP_CTX *recp, */ if (!BN_rshift(a, m, recp->num_bits)) goto err; - if (!BN_mul(b, a,&recp->Nr, ctx)) + if (!BN_mul(b, a, &recp->Nr, ctx)) goto err; if (!BN_rshift(d, b, i - recp->num_bits)) goto err; -- cgit v1.2.3-55-g6feb