Commit 24ce163a authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

gdi32/tests: Fix a test failure on systems configured to use a color profile.

parent 4dba956e
...@@ -217,7 +217,7 @@ static void test_EnumICMProfilesW( HDC dc ) ...@@ -217,7 +217,7 @@ static void test_EnumICMProfilesW( HDC dc )
ok(ret == -1 || broken(ret == 0) /* win9x, nt4 */, "expected -1, got %d\n", ret); ok(ret == -1 || broken(ret == 0) /* win9x, nt4 */, "expected -1, got %d\n", ret);
ret = EnumICMProfilesW( dc, enum_profiles_callbackW, 0 ); ret = EnumICMProfilesW( dc, enum_profiles_callbackW, 0 );
ok(ret == -1 || broken(ret == 0) /* win9x, nt4 */, "expected -1, got %d\n", ret); ok(ret == -1 || ret == 1 || broken(ret == 0) /* win9x, nt4 */, "expected -1, got %d\n", ret);
} }
static void test_SetICMProfileA( HDC dc ) static void test_SetICMProfileA( HDC dc )
......
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