summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--amount.cc27
-rw-r--r--option.cc2
2 files changed, 6 insertions, 23 deletions
diff --git a/amount.cc b/amount.cc
index daf323aa..2e8fc8fb 100644
--- a/amount.cc
+++ b/amount.cc
@@ -392,13 +392,7 @@ amount_t& amount_t::operator*=(const amount_t& amt)
INIT();
mpz_mul(MPZ(quantity), MPZ(quantity), MPZ(amt.quantity));
-
- // Truncate to the recorded precision: MAX_PRECISION.
- mpz_t divisor;
- mpz_init(divisor);
- mpz_ui_pow_ui(divisor, 10, MAX_PRECISION);
- mpz_tdiv_q(MPZ(quantity), MPZ(quantity), divisor);
- mpz_clear(divisor);
+ mpz_tdiv_q(MPZ(quantity), MPZ(quantity), full_divisor);
return *this;
}
@@ -410,15 +404,9 @@ amount_t& amount_t::operator/=(const amount_t& amt)
INIT();
- mpz_t divisor;
- mpz_init(divisor);
- mpz_ui_pow_ui(divisor, 10, MAX_PRECISION);
-
- mpz_mul(MPZ(quantity), MPZ(quantity), divisor);
+ mpz_mul(MPZ(quantity), MPZ(quantity), full_divisor);
mpz_tdiv_q(MPZ(quantity), MPZ(quantity), MPZ(amt.quantity));
- mpz_clear(divisor);
-
return *this;
}
@@ -429,15 +417,9 @@ amount_t& amount_t::operator%=(const amount_t& amt)
INIT();
- mpz_t divisor;
- mpz_init(divisor);
- mpz_ui_pow_ui(divisor, 10, MAX_PRECISION);
-
- mpz_mul(MPZ(quantity), MPZ(quantity), divisor);
+ mpz_mul(MPZ(quantity), MPZ(quantity), full_divisor);
mpz_tdiv_r(MPZ(quantity), MPZ(quantity), MPZ(amt.quantity));
- mpz_clear(divisor);
-
return *this;
}
@@ -476,8 +458,7 @@ std::ostream& operator<<(std::ostream& out, const amount_t& amt)
if (amt.commodity->precision != MAX_PRECISION)
mpz_round(rquotient, MPZ(amt.quantity), amt.commodity->precision);
- mpz_ui_pow_ui(divisor, 10, MAX_PRECISION);
- mpz_tdiv_qr(quotient, remainder, rquotient, divisor);
+ mpz_tdiv_qr(quotient, remainder, rquotient, full_divisor);
if (mpz_sgn(quotient) < 0 || mpz_sgn(remainder) < 0)
negative = true;
diff --git a/option.cc b/option.cc
index a75c8c40..8a3303b3 100644
--- a/option.cc
+++ b/option.cc
@@ -87,6 +87,7 @@ void process_arguments(int argc, char ** argv, const bool anywhere,
}
else if ((*j).long_opt == *i + 2) {
process_option(*j, argv[++index]);
+ i++;
goto next;
}
}
@@ -105,6 +106,7 @@ void process_arguments(int argc, char ** argv, const bool anywhere,
if ((*i)[1] == (*j).short_opt) {
if ((*j).wants_arg) {
process_option(*j, argv[++index]);
+ i++;
goto next;
} else {
process_option(*j);