summaryrefslogtreecommitdiff
path: root/src/session.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/session.cc')
-rw-r--r--src/session.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/session.cc b/src/session.cc
index fc0601d5..9d926550 100644
--- a/src/session.cc
+++ b/src/session.cc
@@ -178,10 +178,10 @@ void session_t::read_init()
journal_t temp;
if (read_journal(temp, *init_file) > 0 ||
- temp.auto_entries.size() > 0 ||
- temp.period_entries.size() > 0)
- throw_(parse_error, "Entries found in initialization file '" <<
- init_file << "'");
+ temp.auto_entries.size() > 0 || temp.period_entries.size() > 0) {
+ throw_(parse_error,
+ "Entries found in initialization file '" << init_file << "'");
+ }
TRACE_FINISH(init, 1);
}