diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-14 00:32:13 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-14 00:32:13 -0400 |
commit | 97d78960694c2078324b6b6af3c7436e30ddc658 (patch) | |
tree | 0735e9ec1a14182f0218bd972d59bb21f5d058fa /src/textual.cc | |
parent | 93f884b5f2159bdf6c9b924fc5436a65cd37fc54 (diff) | |
download | fork-ledger-97d78960694c2078324b6b6af3c7436e30ddc658.tar.gz fork-ledger-97d78960694c2078324b6b6af3c7436e30ddc658.tar.bz2 fork-ledger-97d78960694c2078324b6b6af3c7436e30ddc658.zip |
Whitespace fix.
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 8 |
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; } |