summaryrefslogtreecommitdiff
path: root/src/csv.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-02-17 14:27:25 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-02-17 15:06:05 -0600
commit36b541ac428246e24318e4d118feb40862cf4d1c (patch)
treecb1e06c479bf185ba6e460dc8dab396195fbf966 /src/csv.cc
parentdffc1741d9e0927ec8beb6914335e399c5ba5128 (diff)
downloadfork-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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/csv.cc b/src/csv.cc
index e32a0b87..20a18eeb 100644
--- a/src/csv.cc
+++ b/src/csv.cc
@@ -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;