From 68bce6c031b63c5f40d8e6565366745e9bfe47c4 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 17 Feb 2012 14:28:59 -0600 Subject: Fixes for variable shadowing (16/28) --- src/iterators.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/iterators.cc') diff --git a/src/iterators.cc b/src/iterators.cc index bb7a587c..58e32ba6 100644 --- a/src/iterators.cc +++ b/src/iterators.cc @@ -190,9 +190,9 @@ void sorted_accounts_iterator::push_back(account_t& account) #if defined(DEBUG_ON) if (SHOW_DEBUG("accounts.sorted")) { - foreach (account_t * account, accounts_list.back()) + foreach (account_t * acct, accounts_list.back()) DEBUG("accounts.sorted", - "Account (flat): " << account->fullname()); + "Account (flat): " << acct->fullname()); } #endif } else { -- cgit v1.2.3