summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/report.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/report.h b/src/report.h
index c091487b..da1a7c5a 100644
--- a/src/report.h
+++ b/src/report.h
@@ -334,8 +334,8 @@ public:
OPTION(report_t, anon);
OPTION_(report_t, average, DO() { // -A
- parent->HANDLER(display_total_).set_expr(string("--average"),
- "total_expr/count");
+ parent->HANDLER(display_total_)
+ .set_expr(string("--average"), "total_expr/count");
});
OPTION__(report_t, balance_format_, CTOR(report_t, balance_format_) {
@@ -425,8 +425,8 @@ public:
});
OPTION_(report_t, deviation, DO() { // -D
- parent->HANDLER(display_total_).set_expr(string("--deviation"),
- "amount_expr-total_expr/count");
+ parent->HANDLER(display_total_)
+ .set_expr(string("--deviation"), "amount_expr-total_expr/count");
});
OPTION__