mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 10:55:50 +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 */
|
||||
RtlFillMemoryUlong(Buffer, NumberToSet >> 3, MAXULONG);
|
||||
RtlFillMemoryUlong(Buffer, MAXULONG, NumberToSet >> 3);
|
||||
Buffer += NumberToSet >> 5;
|
||||
|
||||
/* Set what's left */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue