Commit c85f61b1 authored by Alexandre Julliard's avatar Alexandre Julliard

Avoid explicit long long constants.

parent 02c0b9c5
......@@ -467,14 +467,12 @@ static void test_RtlFindLeastSignificantBit()
for (i = 0; i < 64; i++)
{
ulLong = 1ul;
ulLong <<= i;
ulLong = (ULONGLONG)1 << i;
cPos = pRtlFindLeastSignificantBit(ulLong);
ok (cPos == i, "didnt find LSB %llx %d %d", ulLong, i, cPos);
ulLong = 0xfffffffffffffffful;
ulLong <<= i;
ulLong = ~((ULONGLONG)0) << i;
cPos = pRtlFindLeastSignificantBit(ulLong);
ok (cPos == i, "didnt find LSB %llx %d %d", ulLong, i, cPos);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment