summaryrefslogtreecommitdiff
path: root/modules/commands/os_config.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-07-20 02:55:25 -0400
committerAdam <Adam@anope.org>2013-07-20 03:06:20 -0400
commit6db01869479c878753fc6da49f2fb0bc44511359 (patch)
tree130e3afdc6d524eae1bb9a083dd60c84f523e1cb /modules/commands/os_config.cpp
parent492eac20a8e2dfdbdbd5a83e41ed880af76cff79 (diff)
Fix not setting the correct compile flags on modules and fix the resulting warnings
Diffstat (limited to 'modules/commands/os_config.cpp')
-rw-r--r--modules/commands/os_config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_config.cpp b/modules/commands/os_config.cpp
index a9ff515fb..91987ef80 100644
--- a/modules/commands/os_config.cpp
+++ b/modules/commands/os_config.cpp
@@ -69,8 +69,8 @@ class CommandOSConfig : public Command
source.Reply(_("%s settings:"), block->GetName().c_str());
- for (unsigned i = 0; i < replies.size(); ++i)
- source.Reply(replies[i]);
+ for (unsigned j = 0; j < replies.size(); ++j)
+ source.Reply(replies[j]);
}
source.Reply(_("End of configuration."));