Fixes for variable shadowing (17/28)

This commit is contained in:
John Wiegley 2012-02-17 14:29:05 -06:00
parent 68bce6c031
commit 87b5f6ec50

View file

@ -223,8 +223,8 @@ void sorted_accounts_iterator::sort_accounts(account_t& account,
#if defined(DEBUG_ON)
if (SHOW_DEBUG("accounts.sorted")) {
foreach (account_t * account, deque)
DEBUG("accounts.sorted", "Account: " << account->fullname());
foreach (account_t * acct, deque)
DEBUG("accounts.sorted", "Account: " << acct->fullname());
}
#endif
}