(svn r1072) Fixed a few warnings that made trouble in VS .NET 2003
authordominik
Mon, 13 Dec 2004 20:12:45 +0000
changeset 639 998f233b6db3
parent 638 a26f83ba23f3
child 640 b1f21d1ac4d3
(svn r1072) Fixed a few warnings that made trouble in VS .NET 2003
settings_gui.c
--- a/settings_gui.c	Mon Dec 13 19:55:31 2004 +0000
+++ b/settings_gui.c	Mon Dec 13 20:12:45 2004 +0000
@@ -985,7 +985,8 @@
 	const PatchPage *page;
 	const PatchEntry *pe = NULL;
 	bool found = false;
-	int i, j;
+	int i;
+	unsigned int j;
 	int val;
 
 	/* Search for the name in the patch-settings */
@@ -1044,7 +1045,8 @@
 	const PatchEntry *pe = NULL;
 	char value[50];
 	bool found = false;
-	int i, j;
+	int i;
+	unsigned int j;
 
 	/* Search for the name in the patch-settings */
 	for (i = 0; i < lengthof(_patches_page); i++) {