Module: wine Branch: master Commit: 5a0596ed101c11f07a4be7e112251d7bc165c6b1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5a0596ed101c11f07a4be7e112... Author: Andrey Gusev <andrey.goosev(a)gmail.com> Date: Sun May 22 12:54:02 2016 +0300 user32/tests: Fix a typo in ok() message. Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/user32/tests/edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/tests/edit.c b/dlls/user32/tests/edit.c index c9e31f7..8f92ff8 100644 --- a/dlls/user32/tests/edit.c +++ b/dlls/user32/tests/edit.c @@ -1672,7 +1672,7 @@ static void test_text_position_style(DWORD style) /* Get a stock font for which we can determine the metrics */ font = GetStockObject(SYSTEM_FONT); - ok (font != NULL, "GetStockObjcet SYSTEM_FONT failed\n"); + ok (font != NULL, "GetStockObject SYSTEM_FONT failed\n"); dc = GetDC(NULL); ok (dc != NULL, "GetDC() failed\n"); oldFont = SelectObject(dc, font);