From 281836d5b1d9723529c87a2eb0e7c450c63cc2ed Mon Sep 17 00:00:00 2001 From: Fabian Maurer Date: Tue, 25 Jan 2022 22:06:27 +0100 Subject: [PATCH] crypt32/tests: Avoid "misleading indentation" warnings. Signed-off-by: Fabian Maurer Signed-off-by: Alexandre Julliard --- dlls/crypt32/tests/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/crypt32/tests/main.c b/dlls/crypt32/tests/main.c index 09aea370227..b594256fb39 100644 --- a/dlls/crypt32/tests/main.c +++ b/dlls/crypt32/tests/main.c @@ -357,7 +357,7 @@ static void test_getDefaultCryptProv(void) prov = pI_CryptGetDefaultCryptProv(test_prov[i].algid); if (!prov) { -todo_wine_if(test_prov[i].algid == CALG_DSS_SIGN || test_prov[i].algid == CALG_NO_SIGN) + todo_wine_if(test_prov[i].algid == CALG_DSS_SIGN || test_prov[i].algid == CALG_NO_SIGN) ok(test_prov[i].optional, "%u: I_CryptGetDefaultCryptProv(%#x) failed\n", i, test_prov[i].algid); continue; }