1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 08:16:38 +02:00

Fix warning.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1932 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2009-01-23 09:46:03 +00:00
parent 1d1e21fce2
commit 619c513bee
+3 -1
View File
@@ -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];
}