mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:13:18 +00:00
[TOOLS] Fix/suppress all MSVC/x64 warnings (#1525)
This commit is contained in:
parent
0aed8b09a4
commit
f47f45dbdd
29 changed files with 140 additions and 37 deletions
|
@ -855,7 +855,7 @@ kbd_c(IN ULONG StateCount,
|
|||
if (i >= 1)
|
||||
{
|
||||
/* J is the loop variable, K is the double */
|
||||
for (NeedPlus = 0, j = 0, k = 1; (1 << j) <= i; j++, k = (1 << j))
|
||||
for (NeedPlus = 0, j = 0, k = 1; (1u << j) <= i; j++, k = (1 << j))
|
||||
{
|
||||
/* Do we need to add a plus? */
|
||||
if (NeedPlus)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue