diff --git a/ChangeLog b/ChangeLog index 9c37f3f865..368bb21d34 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-01-15 Derek Atkins + + * src/app-utils/test/test-print-parse-amount.c: set force_fit and + round to 0 (like they should be) so we don't hit the rounding + code and blow up. Fixes #103536. + 2003-01-14 Derek Atkins * src/engine/QueryNew.h: add QUERY_PARAM_ACTIVE diff --git a/src/app-utils/test/test-print-parse-amount.c b/src/app-utils/test/test-print-parse-amount.c index c97d124cf9..86633b2678 100644 --- a/src/app-utils/test/test-print-parse-amount.c +++ b/src/app-utils/test/test-print-parse-amount.c @@ -40,6 +40,8 @@ test_num (gnc_numeric n) print_info.min_decimal_places = 0; print_info.use_locale = 1; print_info.use_symbol = 0; + print_info.force_fit = 0; + print_info.round = 0; for (i = 1, fraction = 10; i < 9; i++, fraction *= 10) {