summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2011-07-17 15:28:38 -0500
committerJohn Wiegley <johnw@newartisans.com>2011-07-17 15:28:38 -0500
commitf2d99dae082dbd9a289c01b94930e52e021d9a4c (patch)
tree9e7de551a06959683aca255ccd95c794bb46c28f
parentc4a3a7bbe553e2b1adaeb845dc9e675ccdfd6fdb (diff)
downloadledger-f2d99dae082dbd9a289c01b94930e52e021d9a4c.tar.gz
ledger-f2d99dae082dbd9a289c01b94930e52e021d9a4c.tar.bz2
ledger-f2d99dae082dbd9a289c01b94930e52e021d9a4c.zip
Rely on a default argument in textual.cc
-rw-r--r--src/textual.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textual.cc b/src/textual.cc
index 0e7f2aec..6dd0caa6 100644
--- a/src/textual.cc
+++ b/src/textual.cc
@@ -1320,7 +1320,7 @@ post_t * instance_t::parse_post(char * line,
amount_t& amt(*post->assigned_amount);
value_t account_total
- (post->account->amount(false).strip_annotations(keep_details_t()));
+ (post->account->amount().strip_annotations(keep_details_t()));
DEBUG("post.assign",
"line " << linenum << ": " "account balance = " << account_total);