diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-01-23 09:46:03 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-01-23 09:46:03 +0000 |
commit | 619c513beee687633b46049dce91ef9f2676aa8e (patch) | |
tree | 079763cc7009b638fb47280ee5e4e46ad8be8118 | |
parent | 1d1e21fce2b10d0748d86e933f70007880837074 (diff) |
Fix warning.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1932 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/inspircd12.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/protocol/inspircd12.cpp b/src/protocol/inspircd12.cpp index 0892fb1f7..e6edc9587 100644 --- a/src/protocol/inspircd12.cpp +++ b/src/protocol/inspircd12.cpp @@ -892,7 +892,9 @@ endnick: newav[0] = av[1]; /* timestamp */ newav[1] = av[0]; /* channel name */ - for (int i = 2; i != ac; i++) + int i ; + + for (i = 2; i != ac; i++) { newav[i] = av[i]; } |