diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-13 19:56:10 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-13 19:56:10 -0400 |
commit | e3f228bd5bb0e43bbbdf2a22f796192a887b02b3 (patch) | |
tree | 02acc790bd3e64ec209e7ba74458702ca7f7d684 /src/xact.cc | |
parent | 2ea075dc4f48b5212a2b404e59ce16147871ba86 (diff) | |
download | fork-ledger-e3f228bd5bb0e43bbbdf2a22f796192a887b02b3.tar.gz fork-ledger-e3f228bd5bb0e43bbbdf2a22f796192a887b02b3.tar.bz2 fork-ledger-e3f228bd5bb0e43bbbdf2a22f796192a887b02b3.zip |
Fixed several misplaced parentheses
Diffstat (limited to 'src/xact.cc')
-rw-r--r-- | src/xact.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xact.cc b/src/xact.cc index 7493bd83..a0b9ef37 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -694,9 +694,9 @@ void auto_xact_t::extend_xact(xact_base_t& xact, else if (! pair.first.calc(bound_scope).to_boolean()) { if (pair.second == auto_xact_t::EXPR_ASSERTION) { throw_(parse_error, - _("Transaction assertion failed: %1" << pair.first)); + _("Transaction assertion failed: %1") << pair.first); } else { - warning_(_("Transaction check failed: %1" << pair.first)); + warning_(_("Transaction check failed: %1") << pair.first); } } } |