Commit 3fd7290d authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

localspl/tests: Spelling fix.

parent 2cb5298a
...@@ -715,14 +715,14 @@ static void test_OpenPort() ...@@ -715,14 +715,14 @@ static void test_OpenPort()
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
res = pOpenPort(does_not_existW, &hPort); res = pOpenPort(does_not_existW, &hPort);
ok (!res && (hPort == (HANDLE) 0xdeadbeef), ok (!res && (hPort == (HANDLE) 0xdeadbeef),
"got %u with 0x%x and %p (expectet '0' and 0xdeadbeef)\n", res, GetLastError(), hPort); "got %u with 0x%x and %p (expected '0' and 0xdeadbeef)\n", res, GetLastError(), hPort);
if (res) pClosePort(hPort); if (res) pClosePort(hPort);
hPort = (HANDLE) 0xdeadbeef; hPort = (HANDLE) 0xdeadbeef;
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
res = pOpenPort(emptyW, &hPort); res = pOpenPort(emptyW, &hPort);
ok (!res && (hPort == (HANDLE) 0xdeadbeef), ok (!res && (hPort == (HANDLE) 0xdeadbeef),
"got %u with 0x%x and %p (expectet '0' and 0xdeadbeef)\n", res, GetLastError(), hPort); "got %u with 0x%x and %p (expected '0' and 0xdeadbeef)\n", res, GetLastError(), hPort);
if (res) pClosePort(hPort); if (res) pClosePort(hPort);
......
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