diff options
author | Adam <Adam@anope.org> | 2013-05-17 23:45:02 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-05-17 23:45:02 -0400 |
commit | 5ff3aa7209a768168ddbb6137ee0df06e720b5f3 (patch) | |
tree | 742ea609117ab3a40e9b422edc0507b806ddad3c /modules/m_redis.cpp | |
parent | ca93122a68651302dd556c5b4708e4a34e7a37a2 (diff) |
Yet another variable shadowing error which only show on newer gcc versions
Diffstat (limited to 'modules/m_redis.cpp')
-rw-r--r-- | modules/m_redis.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/m_redis.cpp b/modules/m_redis.cpp index 76cb98d2e..a593b4cf8 100644 --- a/modules/m_redis.cpp +++ b/modules/m_redis.cpp @@ -68,11 +68,11 @@ class Transaction : public Interface if (interfaces.empty()) break; - Interface *i = interfaces.front(); + Interface *inter = interfaces.front(); interfaces.pop_front(); - if (i) - i->OnResult(reply); + if (inter) + inter->OnResult(reply); } } }; |