Whitespace fix.

This commit is contained in:
John Wiegley 2009-01-14 00:32:13 -04:00
parent 93f884b5f2
commit 97d7896069

View file

@ -130,15 +130,15 @@ xact_t * parse_xact(char * line, account_t * account, entry_t * entry = NULL)
xact->set_state(item_t::CLEARED); xact->set_state(item_t::CLEARED);
in.get(p); in.get(p);
p = peek_next_nonws(in); p = peek_next_nonws(in);
DEBUG("textual.parse", "line " << linenum << ": " << DEBUG("textual.parse",
"Parsed the CLEARED flag"); "line " << linenum << ": " << "Parsed the CLEARED flag");
break; break;
case '!': case '!':
xact->set_state(item_t::PENDING); xact->set_state(item_t::PENDING);
in.get(p); in.get(p);
p = peek_next_nonws(in); p = peek_next_nonws(in);
DEBUG("textual.parse", "line " << linenum << ": " << DEBUG("textual.parse",
"Parsed the PENDING flag"); "line " << linenum << ": " << "Parsed the PENDING flag");
break; break;
} }