summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/textual.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/textual.cc b/src/textual.cc
index 61cfd09a..dd23c7b5 100644
--- a/src/textual.cc
+++ b/src/textual.cc
@@ -130,15 +130,15 @@ xact_t * parse_xact(char * line, account_t * account, entry_t * entry = NULL)
xact->set_state(item_t::CLEARED);
in.get(p);
p = peek_next_nonws(in);
- DEBUG("textual.parse", "line " << linenum << ": " <<
- "Parsed the CLEARED flag");
+ DEBUG("textual.parse",
+ "line " << linenum << ": " << "Parsed the CLEARED flag");
break;
case '!':
xact->set_state(item_t::PENDING);
in.get(p);
p = peek_next_nonws(in);
- DEBUG("textual.parse", "line " << linenum << ": " <<
- "Parsed the PENDING flag");
+ DEBUG("textual.parse",
+ "line " << linenum << ": " << "Parsed the PENDING flag");
break;
}