mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 16:12:02 +00:00
[NTDLL_APITEST]: Add braces and remove an unneeded trace.
svn path=/trunk/; revision=62662
This commit is contained in:
parent
c58c9e039c
commit
4a7e080751
1 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue