# HG changeset patch # User rubidium # Date 1155632615 0 # Node ID ec2e69af6b6ba655594167f0778ca3cdcf987b8e # Parent 761e05083f9c1282f19f08f0b71d8e11ec153b5f (svn r5909) -Fix (r5908): silence signedness warning diff -r 761e05083f9c -r ec2e69af6b6b 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); }