sync rostests to r44455
[reactos.git] / rostests / winetests / ntdll / info.c
index f61196e..2882071 100755 (executable)
@@ -355,7 +355,7 @@ static void test_query_procperf(void)
     ok (sppi->KernelTime.QuadPart != 0xdeaddead, "KernelTime unchanged\n");
     ok (sppi->UserTime.QuadPart != 0xdeaddead, "UserTime unchanged\n");
     ok (sppi->IdleTime.QuadPart != 0xdeaddead, "IdleTime unchanged\n");
-
     /* Try it for all processors */
     sppi->KernelTime.QuadPart = 0xdeaddead;
     sppi->UserTime.QuadPart = 0xdeaddead;
@@ -446,13 +446,13 @@ static void test_query_handle(void)
         ok( status == STATUS_SUCCESS,
             "Expected STATUS_SUCCESS, got %08x\n", status);
 
-        /* Check if we have some return values */
-        trace("Number of Handles : %d\n", shi->Count);
-        todo_wine
-        {
-            /* our implementation is a stub for now */
-            ok( shi->Count > 1, "Expected more than 1 handles, got (%d)\n", shi->Count);
-        }
+    /* Check if we have some return values */
+    trace("Number of Handles : %d\n", shi->Count);
+    todo_wine
+    {
+        /* our implementation is a stub for now */
+        ok( shi->Count > 1, "Expected more than 1 handles, got (%d)\n", shi->Count);
+    }
     }
     HeapFree( GetProcessHeap(), 0, shi);
 }
@@ -850,7 +850,7 @@ static void test_readvirtualmemory(void)
     status = pNtReadVirtualMemory(process, (void *) 0x1234, buffer, 12, &readcount);
     ok( status == STATUS_PARTIAL_COPY || broken(status == STATUS_ACCESS_VIOLATION), "Expected STATUS_PARTIAL_COPY, got %08x\n", status);
     if (status == STATUS_PARTIAL_COPY)
-        ok( readcount == 0, "Expected to read 0 bytes, got %ld\n",readcount);
+    ok( readcount == 0, "Expected to read 0 bytes, got %ld\n",readcount);
     }
 
     /* 0 handle */