bug fix in QIF parsing

This commit is contained in:
John Wiegley 2004-08-19 18:16:22 -04:00
parent aba3d3037a
commit 7e2af9b73d

2
qif.cc
View file

@ -94,7 +94,7 @@ unsigned int parse_qif_file(std::istream& in, journal_t * journal,
case 'N':
if (std::isdigit(in.peek())) {
in >> c >> line;
in >> line;
entry->code = line;
}
break;