summaryrefslogtreecommitdiff
path: root/src/xact.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-27 07:15:41 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-27 08:30:39 -0400
commit0fdb900c9975b97b43fe85c2691a9d5e69006fab (patch)
tree833ced95e5bd15a2bce802cd474f3c0fd93a88f7 /src/xact.cc
parentf20b6a3b9edc2ace7b85eb4c961d57f69d98ea09 (diff)
downloadledger-0fdb900c9975b97b43fe85c2691a9d5e69006fab.tar.gz
ledger-0fdb900c9975b97b43fe85c2691a9d5e69006fab.tar.bz2
ledger-0fdb900c9975b97b43fe85c2691a9d5e69006fab.zip
Redid the way temporaries are handled in filtering
Diffstat (limited to 'src/xact.cc')
-rw-r--r--src/xact.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xact.cc b/src/xact.cc
index 13faedba..f459b4a2 100644
--- a/src/xact.cc
+++ b/src/xact.cc
@@ -65,7 +65,7 @@ void xact_base_t::add_post(post_t * post)
bool xact_base_t::remove_post(post_t * post)
{
posts.remove(post);
- post->xact = NULL;
+ post->xact = NULL;
return true;
}