mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:12:59 +00:00
- Fix wrong macros usage, found by PVS-Studio
svn path=/trunk/; revision=53513
This commit is contained in:
parent
8ccd1fff32
commit
0bedb73493
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@ RtlSetBits(
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set all full ULONGs */
|
/* Set all full ULONGs */
|
||||||
RtlFillMemoryUlong(Buffer, NumberToSet >> 3, MAXULONG);
|
RtlFillMemoryUlong(Buffer, MAXULONG, NumberToSet >> 3);
|
||||||
Buffer += NumberToSet >> 5;
|
Buffer += NumberToSet >> 5;
|
||||||
|
|
||||||
/* Set what's left */
|
/* Set what's left */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue