1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/lang/modula-3-lib/files/patch-bv
1999-12-16 08:11:01 +00:00

12 lines
391 B
Plaintext

--- m3/m3core/src/float/Common/DragonInt.m3.orig Fri Jul 7 13:26:16 1995
+++ m3/m3core/src/float/Common/DragonInt.m3 Wed Dec 15 09:17:34 1999
@@ -421,7 +421,7 @@
t.s := n_words;
t.w := s.next;
INC (s.next, n_words);
- IF (s.next > NUMBER (s.w^)) THEN Expand (s); END;
+ IF (s.next >= NUMBER (s.w^)) THEN Expand (s); END;
RETURN ADR (s.w[t.w]);
END InitValue;