[PATCH] gdi32: Fix the spelling of some comments.
Signed-off-by: Francois Gouget <fgouget(a)free.fr> --- dlls/gdi32/bidi.c | 2 +- dlls/gdi32/tests/font.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/gdi32/bidi.c b/dlls/gdi32/bidi.c index 67ef2d385c1..1b2dca774c7 100644 --- a/dlls/gdi32/bidi.c +++ b/dlls/gdi32/bidi.c @@ -68,7 +68,7 @@ extern const unsigned short bidi_direction_table[] DECLSPEC_HIDDEN; Note: The list of bidirectional character types here is not grouped the - same way as the table 3-7, since the numberic values for the types + same way as the table 3-7, since the numeric values for the types are chosen to keep the state and action tables compact. ------------------------------------------------------------------------*/ enum directions diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c index 245fb4d4c2e..b57effd349d 100644 --- a/dlls/gdi32/tests/font.c +++ b/dlls/gdi32/tests/font.c @@ -4801,7 +4801,7 @@ static void test_GetGlyphOutline(void) old_hfont = SelectObject(hdc, hfont); - /* expected to ignore superfluous bytes (sigle-byte character) */ + /* expected to ignore superfluous bytes (single-byte character) */ ret = GetGlyphOutlineA(hdc, 0x8041, GGO_BITMAP, &gm, 0, NULL, &mat); ret2 = GetGlyphOutlineA(hdc, 0x41, GGO_BITMAP, &gm2, 0, NULL, &mat); ok(ret == ret2 && memcmp(&gm, &gm2, sizeof gm) == 0, "%d %d\n", ret, ret2); -- 2.20.1
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=56558 Your paranoid android. === wvistau64_zh_CN (task log) === Task errors: The task timed out === debian10 (32 bit Japanese:Japan report) === gdi32: font.c:6304: Test failed: expected vertical face for charset 128, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 129, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 130, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 134, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 136, got Droid Sans Fallback === debian10 (32 bit Chinese:China report) === gdi32: font.c:6304: Test failed: expected vertical face for charset 128, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 129, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 130, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 134, got Droid Sans Fallback font.c:6304: Test failed: expected vertical face for charset 136, got Droid Sans Fallback
participants (2)
-
Francois Gouget -
Marvin