From 8fd87df6e0d65220b010efc277df9103b33c5ead Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 9 Feb 1994 00:53:27 +0000 Subject: [PATCH] Fix typo in bignum_subtract_unsigned. --- v7/src/microcode/bignum.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/microcode/bignum.c b/v7/src/microcode/bignum.c index 5d46ed8c3..70750cb97 100644 --- a/v7/src/microcode/bignum.c +++ b/v7/src/microcode/bignum.c @@ -1,8 +1,8 @@ /* -*-C-*- -$Id: bignum.c,v 9.40 1993/06/24 03:55:00 gjr Exp $ +$Id: bignum.c,v 9.41 1994/02/09 00:53:27 cph Exp $ -Copyright (c) 1989-1993 Massachusetts Institute of Technology +Copyright (c) 1989-94 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -886,7 +886,7 @@ DEFUN (bignum_subtract_unsigned, (x, y), } } { - fast bignum_digit_type * end_x = (scan_x + x_length); + fast bignum_digit_type * end_x = ((BIGNUM_START_PTR (x)) + x_length); if (borrow != 0) while (scan_x < end_x) { -- 2.25.1