Commit c0ad6d74 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winspool.drv/tests: Fix the spelling of a variable name.

parent b886f619
......@@ -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);
......
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