Andrey Gusev : comctl32/tests: Fix a typo in ok() message.
Module: wine Branch: master Commit: 4a197cf7b0e6947789bc47bb144c3c2e178b043d URL: https://source.winehq.org/git/wine.git/?a=commit;h=4a197cf7b0e6947789bc47bb1... Author: Andrey Gusev <andrey.goosev(a)gmail.com> Date: Fri Dec 22 17:24:04 2017 +0200 comctl32/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/comctl32/tests/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/tests/misc.c b/dlls/comctl32/tests/misc.c index a6939bd..46bb431 100644 --- a/dlls/comctl32/tests/misc.c +++ b/dlls/comctl32/tests/misc.c @@ -194,7 +194,7 @@ static void test_Alloc(void) /* reallocate a NULL ptr */ p = pReAlloc(NULL, 2); - ok(p != NULL, "Expectd non-NULL ptr\n"); + ok(p != NULL, "Expected non-NULL ptr\n"); res = pFree(p); ok(res == TRUE, "Expected TRUE, got %d\n", res);
participants (1)
-
Alexandre Julliard