summaryrefslogtreecommitdiff
path: root/amount.cc
diff options
context:
space:
mode:
Diffstat (limited to 'amount.cc')
-rw-r--r--amount.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/amount.cc b/amount.cc
index 729d12f5..c2d27538 100644
--- a/amount.cc
+++ b/amount.cc
@@ -145,7 +145,7 @@ amount_t::amount_t(const long value)
quantity = new bigint_t;
mpz_set_si(MPZ(quantity), value);
} else {
- quantity = NULL;
+ quantity = NULL;
}
commodity_ = NULL;
}
@@ -156,7 +156,7 @@ amount_t::amount_t(const unsigned long value)
quantity = new bigint_t;
mpz_set_ui(MPZ(quantity), value);
} else {
- quantity = NULL;
+ quantity = NULL;
}
commodity_ = NULL;
}
@@ -167,7 +167,7 @@ amount_t::amount_t(const double value)
quantity = new bigint_t;
mpz_set_d(MPZ(quantity), value);
} else {
- quantity = NULL;
+ quantity = NULL;
}
commodity_ = NULL;
}