Author: hbelusca
Date: Sun Apr  6 15:51:38 2014
New Revision: 62662

URL: http://svn.reactos.org/svn/reactos?rev=62662&view=rev
Log:
[NTDLL_APITEST]: Add braces and remove an unneeded trace.

Modified:
    trunk/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c

Modified: trunk/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c?rev=62662&r1=62661&r2=62662&view=diff
==============================================================================
--- trunk/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c   [iso-8859-1] 
(original)
+++ trunk/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c   [iso-8859-1] 
Sun Apr  6 15:51:38 2014
@@ -102,11 +102,13 @@
     SIZE_T i;
 
     for (i = 0; i < Size; i++)
+    {
         if (Array[i] != Value)
         {
             trace("Expected %x, found %x at offset %lu\n", Value, Array[i], 
(ULONG)i);
             return FALSE;
         }
+    }
     return TRUE;
 }
 
@@ -188,7 +190,6 @@
 
     for (i = 0; i < TestCount; i++)
     {
-        trace("i = %d\n", i);
         switch (TestCases[i].PrefixType)
         {
             case PrefixNone:


Reply via email to