diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-17 14:27:25 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-17 15:06:05 -0600 |
commit | 36b541ac428246e24318e4d118feb40862cf4d1c (patch) | |
tree | cb1e06c479bf185ba6e460dc8dab396195fbf966 /src/csv.cc | |
parent | dffc1741d9e0927ec8beb6914335e399c5ba5128 (diff) | |
download | fork-ledger-36b541ac428246e24318e4d118feb40862cf4d1c.tar.gz fork-ledger-36b541ac428246e24318e4d118feb40862cf4d1c.tar.bz2 fork-ledger-36b541ac428246e24318e4d118feb40862cf4d1c.zip |
Fixes for variable shadowing (9/28)
Diffstat (limited to 'src/csv.cc')
-rw-r--r-- | src/csv.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -95,9 +95,9 @@ char * csv_reader::next_line(std::istream& sin) return linebuf; } -void csv_reader::read_index(std::istream& in) +void csv_reader::read_index(std::istream& sin) { - char * line = next_line(in); + char * line = next_line(sin); if (! line) return; |