[PATCH 06/22] schedsvc/tests: Avoid "misleading indentation" warnings.

Fabian Maurer dark.shadow4 at web.de
Fri Jan 28 17:36:45 CST 2022


Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
---
 dlls/schedsvc/tests/rpcapi.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/schedsvc/tests/rpcapi.c b/dlls/schedsvc/tests/rpcapi.c
index a8f75ded7a5..09523df4fd6 100644
--- a/dlls/schedsvc/tests/rpcapi.c
+++ b/dlls/schedsvc/tests/rpcapi.c
@@ -493,15 +493,15 @@ START_TEST(rpcapi)
     ok(state == TASK_STATE_DISABLED, "expected TASK_STATE_DISABLED, got %u\n", state);

     hr = SchRpcEnableTask(L"\\Wine\\Task1", 0xdeadbeef);
-todo_wine
+    todo_wine
     ok(hr == S_OK, "expected S_OK, got %#x\n", hr);

     enabled = state = 0xdeadbeef;
     hr = SchRpcGetTaskInfo(L"\\Wine\\Task1", SCH_FLAG_STATE, &enabled, &state);
     ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
-todo_wine
+    todo_wine
     ok(enabled == 1, "expected 1, got %u\n", enabled);
-todo_wine
+    todo_wine
     ok(state == TASK_STATE_READY, "expected TASK_STATE_READY, got %u\n", state);

     hr = SchRpcDelete(L"Wine\\Task1", 0);
--
2.35.0




More information about the wine-devel mailing list