From 5fafcafc436e54effef15dc1a5669f88d67b5bd7 Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 10 Jun 2018 19:38:19 +0000 Subject: fix odd whitespace --- src/lib/libcrypto/bn/bn_add.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/libcrypto/bn/bn_add.c b/src/lib/libcrypto/bn/bn_add.c index 334fb4f5d4..2e82d280ec 100644 --- a/src/lib/libcrypto/bn/bn_add.c +++ b/src/lib/libcrypto/bn/bn_add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_add.c,v 1.11 2017/01/29 17:49:22 beck Exp $ */ +/* $OpenBSD: bn_add.c,v 1.12 2018/06/10 19:38:19 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -79,8 +79,8 @@ BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) */ if (a_neg ^ b->neg) { /* only one is negative */ - if (a_neg) - { tmp = a; + if (a_neg) { + tmp = a; a = b; b = tmp; } -- cgit v1.2.3-55-g6feb