summaryrefslogtreecommitdiff
path: root/src/amount.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/amount.cc')
-rw-r--r--src/amount.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/amount.cc b/src/amount.cc
index 6ff2f4dd..6ddcdb4f 100644
--- a/src/amount.cc
+++ b/src/amount.cc
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2013, John Wiegley. All rights reserved.
+ * Copyright (c) 2003-2015, John Wiegley. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -301,7 +301,7 @@ void amount_t::_copy(const amount_t& amt)
quantity = new bigint_t(*amt.quantity);
} else {
quantity = amt.quantity;
- DEBUG("amounts.refs",
+ DEBUG("amount.refs",
quantity << " refc++, now " << (quantity->refc + 1));
quantity->refc++;
}
@@ -339,7 +339,7 @@ void amount_t::_release()
{
VERIFY(valid());
- DEBUG("amounts.refs", quantity << " refc--, now " << (quantity->refc - 1));
+ DEBUG("amount.refs", quantity << " refc--, now " << (quantity->refc - 1));
if (--quantity->refc == 0) {
if (quantity->has_flags(BIGINT_BULK_ALLOC))
@@ -928,7 +928,7 @@ void amount_t::annotate(const annotation_t& details)
}
assert(this_base);
- DEBUG("amounts.commodities", "Annotating commodity for amount "
+ DEBUG("amount.commodities", "Annotating commodity for amount "
<< *this << std::endl << details);
if (commodity_t * ann_comm =
@@ -939,7 +939,7 @@ void amount_t::annotate(const annotation_t& details)
assert(false);
#endif
- DEBUG("amounts.commodities", "Annotated amount is " << *this);
+ DEBUG("amount.commodities", "Annotated amount is " << *this);
}
bool amount_t::has_annotation() const