Commit e88e2239 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdll/tests: Fix a compiler warning on PowerPC.

parent 9281bdb4
......@@ -413,7 +413,7 @@ static void test_RtlFindClearBitsAndSet(void)
static void test_RtlFindMostSignificantBit(void)
{
int i;
CCHAR cPos;
signed char cPos;
ULONGLONG ulLong;
if (!pRtlFindMostSignificantBit)
......@@ -442,7 +442,7 @@ static void test_RtlFindMostSignificantBit(void)
static void test_RtlFindLeastSignificantBit(void)
{
int i;
CCHAR cPos;
signed char cPos;
ULONGLONG ulLong;
if (!pRtlFindLeastSignificantBit)
......
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