(svn r5909) -Fix (r5908): silence signedness warning
authorrubidium
Tue, 15 Aug 2006 09:03:35 +0000
changeset 4279 ec2e69af6b6b
parent 4278 761e05083f9c
child 4280 90e7b2ea8627
(svn r5909) -Fix (r5908): silence signedness warning
console_cmds.c
--- a/console_cmds.c	Tue Aug 15 07:37:01 2006 +0000
+++ b/console_cmds.c	Tue Aug 15 09:03:35 2006 +0000
@@ -1342,7 +1342,7 @@
 	if (argc == 2) {
 		IConsoleGetPatchSetting(argv[1]);
 	} else {
-		int32 val;
+		uint32 val;
 		if (GetArgumentInteger(&val, argv[2])) IConsoleSetPatchSetting(argv[1], val);
 	}