[NTDLL_APITEST]: Add braces and remove an unneeded trace.

svn path=/trunk/; revision=62662
This commit is contained in:
Hermès Bélusca-Maïto 2014-04-06 15:51:38 +00:00
parent c58c9e039c
commit 4a7e080751

View file

@ -102,11 +102,13 @@ CheckBuffer(
SIZE_T i; SIZE_T i;
for (i = 0; i < Size; i++) for (i = 0; i < Size; i++)
{
if (Array[i] != Value) if (Array[i] != Value)
{ {
trace("Expected %x, found %x at offset %lu\n", Value, Array[i], (ULONG)i); trace("Expected %x, found %x at offset %lu\n", Value, Array[i], (ULONG)i);
return FALSE; return FALSE;
} }
}
return TRUE; return TRUE;
} }
@ -188,7 +190,6 @@ RunTestCases(VOID)
for (i = 0; i < TestCount; i++) for (i = 0; i < TestCount; i++)
{ {
trace("i = %d\n", i);
switch (TestCases[i].PrefixType) switch (TestCases[i].PrefixType)
{ {
case PrefixNone: case PrefixNone: