From 4a7e08075138b1e9d29c5ede46bd6a9ef458028a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 6 Apr 2014 15:51:38 +0000 Subject: [PATCH] [NTDLL_APITEST]: Add braces and remove an unneeded trace. svn path=/trunk/; revision=62662 --- rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c b/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c index 7fd5adbae1e..41d08508386 100644 --- a/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c +++ b/rostests/apitests/ntdll/RtlGetFullPathName_UstrEx.c @@ -102,11 +102,13 @@ CheckBuffer( 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 @@ RunTestCases(VOID) for (i = 0; i < TestCount; i++) { - trace("i = %d\n", i); switch (TestCases[i].PrefixType) { case PrefixNone: