diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-05 22:54:21 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-05 22:54:21 -0400 |
commit | 5409bc04b8535ba2b52096475d759462c8cd9876 (patch) | |
tree | 7f6f7e3fcb461f658280bb1aa345aad20dad4bfc | |
parent | ef2e0beb6409e4ae6f0641700ea00e3a0f20d305 (diff) | |
download | fork-ledger-5409bc04b8535ba2b52096475d759462c8cd9876.tar.gz fork-ledger-5409bc04b8535ba2b52096475d759462c8cd9876.tar.bz2 fork-ledger-5409bc04b8535ba2b52096475d759462c8cd9876.zip |
fixed -R report
-rw-r--r-- | valexpr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -162,7 +162,7 @@ void node_t::compute(balance_t& result, const details_t& details) const case REAL: if (details.xact) - result = bool(details.xact->flags & TRANSACTION_VIRTUAL); + result = ! (details.xact->flags & TRANSACTION_VIRTUAL); break; case INDEX: |