From 7e2af9b73d8ce594ef0a4d9dee0d940809ef4b6a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 19 Aug 2004 18:16:22 -0400 Subject: [PATCH] bug fix in QIF parsing --- qif.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qif.cc b/qif.cc index e0bc262b..77dc791a 100644 --- a/qif.cc +++ b/qif.cc @@ -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;