From 231ecf85866062a89a63ff10dd64832f18ac6d8c Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Mon, 21 Feb 2022 08:08:09 +0100 Subject: [PATCH] oledb32/tests: Don't outdent todo_wine*. This prevents -Wmisleading-indentation warnings (Mingw GCC11). Signed-off-by: Eric Pouech Signed-off-by: Alexandre Julliard --- dlls/oledb32/tests/database.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oledb32/tests/database.c b/dlls/oledb32/tests/database.c index 8bdb1f948f4..c3551d085f1 100644 --- a/dlls/oledb32/tests/database.c +++ b/dlls/oledb32/tests/database.c @@ -596,7 +596,7 @@ static void test_rowposition(void) ok(hr == S_OK, "got 0x%08x\n", hr); hr = IConnectionPointContainer_EnumConnectionPoints(cpc, &enum_points); -todo_wine + todo_wine ok(hr == S_OK, "got 0x%08x\n", hr); if (hr == S_OK) { hr = IEnumConnectionPoints_Next(enum_points, 1, &cp, NULL);