reactos
diff -u -r1.271 -r1.272
--- ChangeLog 29 Oct 2004 16:48:10 -0000 1.271
+++ ChangeLog 13 Nov 2004 17:20:28 -0000 1.272
@@ -1,3 +1,8 @@
+2004-11-13 Casper S. Hornstrup <chorns@users.sourceforge.net>
+
+ * apps/utils/net/roshttpd/include/list.h (CList<Item>::Get): Declare i
+ before use.
+
2004-10-29 Casper S. Hornstrup <chorns@users.sourceforge.net>
* ntoskrnl/include/internal/test.h (NtLockVirtualMemoryInternal): Rename
reactos/apps/utils/net/roshttpd/include
diff -u -r1.2 -r1.3
--- list.h 16 Jan 2001 09:55:01 -0000 1.2
+++ list.h 13 Nov 2004 17:20:30 -0000 1.3
@@ -112,7 +112,7 @@
return NULL;
node = Header;
- for (i = 0; i <= index; i++)
+ for (int i = 0; i <= index; i++)
node = node->GetNext();
return (Item *) node->GetElement();