From afd64bc58fd6f18a442ca0ad4f59c66a745ce66f Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sun, 27 Jun 2004 20:54:03 +0000 Subject: [PATCH] whoops, mised a flag git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@10116 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/qofmath128.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/engine/qofmath128.c b/src/engine/qofmath128.c index 99185ed38c..2fae5b9a80 100644 --- a/src/engine/qofmath128.c +++ b/src/engine/qofmath128.c @@ -285,6 +285,7 @@ shift128 (qofint128 x) guint64 sbit = x.hi & 0x1; x.hi >>= 1; x.lo >>= 1; + x.isbig = 0; if (sbit) { sbit = 1<<30; /* in two step to avoid 1ULL<<63 */