https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b217d8bd149b821b2d2d1…
commit b217d8bd149b821b2d2d13662606c983e150d76e
Author: Kyle Katarn <contact(a)kcsoftwares.com>
AuthorDate: Mon Sep 21 23:36:29 2020 +0200
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Sat Sep 26 17:12:36 2020 +0200
[ROSTEST] Fix copy paste bug in RtlBitmap.c
---
modules/rostests/apitests/ntdll/RtlBitmap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/rostests/apitests/ntdll/RtlBitmap.c
b/modules/rostests/apitests/ntdll/RtlBitmap.c
index 355ccee0aff..3b224be1e66 100644
--- a/modules/rostests/apitests/ntdll/RtlBitmap.c
+++ b/modules/rostests/apitests/ntdll/RtlBitmap.c
@@ -307,7 +307,7 @@ Test_RtlNumberOfSetBits(void)
RtlInitializeBitMap(&BitMapHeader, Buffer, 0);
ok_int(RtlNumberOfSetBits(&BitMapHeader), 0);
- ok_hex(Buffer[0], IsBroken ? 0x7f00ff0f : 0x7f00ff0f);
+ ok_hex(Buffer[0], IsBroken ? 0x7f00ff0f : 0xff00ff0f);
ok_hex(Buffer[1], 0x3F303F30);
FreeGuarded(Buffer);