diff options
Diffstat (limited to 'binary.cc')
-rw-r--r-- | binary.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -343,9 +343,9 @@ inline void read_binary_transaction(char *& data, transaction_t * xact) xact->data = NULL; if (xact->amount_expr) - compute_amount(xact->amount_expr, xact->amount, *xact); + compute_amount(xact->amount_expr, xact->amount, xact); if (xact->cost_expr) - compute_amount(xact->cost_expr, *xact->cost, *xact); + compute_amount(xact->cost_expr, *xact->cost, xact); } inline void read_binary_entry_base(char *& data, entry_base_t * entry, |