summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2018-06-10 19:38:19 +0000
committertb <>2018-06-10 19:38:19 +0000
commit5fafcafc436e54effef15dc1a5669f88d67b5bd7 (patch)
tree00ba16432abea6515ac98a6941611c5853cc75fc
parentac5223be7f036d3e15076a46df72cc522bda4fb0 (diff)
downloadopenbsd-5fafcafc436e54effef15dc1a5669f88d67b5bd7.tar.gz
openbsd-5fafcafc436e54effef15dc1a5669f88d67b5bd7.tar.bz2
openbsd-5fafcafc436e54effef15dc1a5669f88d67b5bd7.zip
fix odd whitespace
-rw-r--r--src/lib/libcrypto/bn/bn_add.c6
1 files 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 @@
1/* $OpenBSD: bn_add.c,v 1.11 2017/01/29 17:49:22 beck Exp $ */ 1/* $OpenBSD: bn_add.c,v 1.12 2018/06/10 19:38:19 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -79,8 +79,8 @@ BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
79 */ 79 */
80 if (a_neg ^ b->neg) { 80 if (a_neg ^ b->neg) {
81 /* only one is negative */ 81 /* only one is negative */
82 if (a_neg) 82 if (a_neg) {
83 { tmp = a; 83 tmp = a;
84 a = b; 84 a = b;
85 b = tmp; 85 b = tmp;
86 } 86 }