summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn_add.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bn/bn_add.c')
-rw-r--r--src/lib/libcrypto/bn/bn_add.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_add.c b/src/lib/libcrypto/bn/bn_add.c
index 5b2e2495b8..ebc9b9b56b 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.9 2014/07/11 08:44:47 jsing Exp $ */ 1/* $OpenBSD: bn_add.c,v 1.10 2014/10/28 07:35:58 jsg 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 *
@@ -170,7 +170,7 @@ int
170BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) 170BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
171{ 171{
172 int max, min, dif; 172 int max, min, dif;
173 register BN_ULONG t1, t2, *ap, *bp, *rp; 173 BN_ULONG t1, t2, *ap, *bp, *rp;
174 int i, carry; 174 int i, carry;
175 175
176 bn_check_top(a); 176 bn_check_top(a);