Module: wine Branch: master Commit: ec494887781bd6b5c0d50b5429093ca637024fe8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=ec494887781bd6b5c0d50b542...
Author: Eric Pouech eric.pouech@gmail.com Date: Mon Feb 21 08:07:45 2022 +0100
advapi32/tests: Don't outdent todo_wine*.
This prevents -Wmisleading-indentation warnings (Mingw GCC11).
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/advapi32/tests/security.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/advapi32/tests/security.c b/dlls/advapi32/tests/security.c index 009a941c700..e0a86acd5df 100644 --- a/dlls/advapi32/tests/security.c +++ b/dlls/advapi32/tests/security.c @@ -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()); }