diff options
Diffstat (limited to 'src/post.cc')
-rw-r--r-- | src/post.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post.cc b/src/post.cc index 4178c8bc..862460df 100644 --- a/src/post.cc +++ b/src/post.cc @@ -558,7 +558,7 @@ std::size_t post_t::xact_id() const return id; id++; } - assert(! "Failed to find posting within its transaction"); + assert("Failed to find posting within its transaction" == NULL); return 0; } @@ -570,7 +570,7 @@ std::size_t post_t::account_id() const return id; id++; } - assert(! "Failed to find posting within its transaction"); + assert("Failed to find posting within its transaction" == NULL); return 0; } |