Module: wine Branch: master Commit: 2d6fdf7c8e85b5c92f7ab5569002d0d9245501e9 URL: https://gitlab.winehq.org/wine/wine/-/commit/2d6fdf7c8e85b5c92f7ab5569002d0d...
Author: Fabian Maurer dark.shadow4@web.de Date: Sun Dec 11 21:03:17 2022 +0100
dwrite/tests: Prevent "misleading indentation" warnings.
Happens on gcc 12.2.0
Signed-off-by: Fabian Maurer dark.shadow4@web.de
---
dlls/dwrite/tests/layout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/dwrite/tests/layout.c b/dlls/dwrite/tests/layout.c index f9f4f46f584..c8c706a7395 100644 --- a/dlls/dwrite/tests/layout.c +++ b/dlls/dwrite/tests/layout.c @@ -5309,12 +5309,12 @@ static void test_system_fallback(void) if (!font) continue;
get_font_name(font, name, ARRAY_SIZE(name)); - todo_wine + todo_wine ok(!wcscmp(name, tests[i].name), "%u: unexpected name %s.\n", i, wine_dbgstr_w(name));
hr = IDWriteFont_HasCharacter(font, g_source[0], &exists); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); - todo_wine + todo_wine ok(exists, "%s missing character %#x\n", wine_dbgstr_w(name), g_source[0]);
IDWriteFont_Release(font);