Francois Gouget : winspool.drv/tests: Fix the spelling of a variable name.
Module: wine Branch: master Commit: c0ad6d745e511da6e1459fb6a5b51ac307205c24 URL: https://gitlab.winehq.org/wine/wine/-/commit/c0ad6d745e511da6e1459fb6a5b51ac... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Aug 25 11:57:45 2022 +0200 winspool.drv/tests: Fix the spelling of a variable name. --- dlls/winspool.drv/tests/info.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winspool.drv/tests/info.c b/dlls/winspool.drv/tests/info.c index 47f602b7de3..58ab581ed25 100644 --- a/dlls/winspool.drv/tests/info.c +++ b/dlls/winspool.drv/tests/info.c @@ -2679,7 +2679,7 @@ static void test_DocumentProperties(void) LONG dm_size, ret; DEVMODEA *dm; char empty_str[] = ""; - char non_existing_str[] = "non existing printer"; + char nonexistent_str[] = "nonexistent printer"; if (!default_printer) { @@ -2708,7 +2708,7 @@ static void test_DocumentProperties(void) ret = DocumentPropertiesA(0, hprn, empty_str, dm, dm, DM_OUT_BUFFER); ok(ret == IDOK, "DocumentPropertiesA ret value %ld != expected IDOK\n", ret); - ret = DocumentPropertiesA(0, hprn, non_existing_str, dm, dm, DM_OUT_BUFFER); + ret = DocumentPropertiesA(0, hprn, nonexistent_str, dm, dm, DM_OUT_BUFFER); ok(ret == IDOK, "DocumentPropertiesA ret value %ld != expected IDOK\n", ret); test_DEVMODEA(dm, dm_size, default_printer);
participants (1)
-
Alexandre Julliard