Commit ec494887 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

advapi32/tests: Don't outdent todo_wine*.

This prevents -Wmisleading-indentation warnings (Mingw GCC11). Signed-off-by: 's avatarEric Pouech <eric.pouech@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 3a843a43
......@@ -5522,9 +5522,9 @@ static void test_mutex_security(HANDLE token)
SetLastError(0xdeadbeef);
dup = OpenMutexA(0, FALSE, "WineTestMutex");
todo_wine
todo_wine
ok(!dup, "OpenMutex should fail\n");
todo_wine
todo_wine
ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %u\n", GetLastError());
}
......@@ -5579,9 +5579,9 @@ static void test_event_security(HANDLE token)
SetLastError(0xdeadbeef);
dup = OpenEventA(0, FALSE, "WineTestEvent");
todo_wine
todo_wine
ok(!dup, "OpenEvent should fail\n");
todo_wine
todo_wine
ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %u\n", GetLastError());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment