mirror of
https://github.com/znc/znc.git
synced 2026-06-23 19:42:02 +02:00
Fix all those warnings from -Wshadow
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@964 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
+3
-3
@@ -270,11 +270,11 @@ public:
|
||||
Table.SetCell("Channels", it->second->GetChannels());
|
||||
}
|
||||
|
||||
CString sLine;
|
||||
CString sTmp;
|
||||
unsigned int uTableIdx = 0;
|
||||
|
||||
while (Table.GetLine(uTableIdx++, sLine)) {
|
||||
PutModule(sLine);
|
||||
while (Table.GetLine(uTableIdx++, sTmp)) {
|
||||
PutModule(sTmp);
|
||||
}
|
||||
} else if (sCommand.CaseCmp("ADDCHANS") == 0 || sCommand.CaseCmp("DELCHANS") == 0) {
|
||||
CString sUser = sLine.Token(1);
|
||||
|
||||
Reference in New Issue
Block a user