Module: wine Branch: master Commit: 3fd7290d4fc91cea887b16a7c094d22ec843576c URL: http://source.winehq.org/git/wine.git/?a=commit;h=3fd7290d4fc91cea887b16a7c0...
Author: Detlef Riekenberg wine.dev@web.de Date: Sun Oct 14 22:14:58 2007 +0200
localspl/tests: Spelling fix.
---
dlls/localspl/tests/localmon.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/localspl/tests/localmon.c b/dlls/localspl/tests/localmon.c index bc759f1..06cdfbe 100644 --- a/dlls/localspl/tests/localmon.c +++ b/dlls/localspl/tests/localmon.c @@ -715,14 +715,14 @@ static void test_OpenPort() SetLastError(0xdeadbeef); res = pOpenPort(does_not_existW, &hPort); 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);
hPort = (HANDLE) 0xdeadbeef; SetLastError(0xdeadbeef); res = pOpenPort(emptyW, &hPort); 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);