From e1ce0245465f6cf6d5790c269892ccabcdcd6d1f Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 31 Jan 2009 14:51:30 -0400 Subject: [PATCH] Added some missing break statements. --- src/report.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/report.cc b/src/report.cc index 1f3ecf14..37ac1912 100644 --- a/src/report.cc +++ b/src/report.cc @@ -645,12 +645,14 @@ expr_t::ptr_op_t report_t::lookup(const string& name) return expr_t::op_t::wrap_functor (reporter (new format_accounts(*this, FORMAT(balance_format)))); + break; case 'e': if (std::strcmp(p, "equity") == 0) return expr_t::op_t::wrap_functor (reporter (new format_equity(*this, FORMAT(print_format)))); + break; case 'p': if (*(p + 1) == '\0' ||