Paul Vriens : ntdll/tests: Fix typos.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Aug 22 06:23:13 CDT 2007


Module: wine
Branch: master
Commit: efc001a21f6b9f7318f712e690924de09f6bf5d2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=efc001a21f6b9f7318f712e690924de09f6bf5d2

Author: Paul Vriens <paul.vriens.wine at gmail.com>
Date:   Wed Aug 22 09:09:07 2007 +0200

ntdll/tests: Fix typos.

---

 dlls/ntdll/tests/om.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ntdll/tests/om.c b/dlls/ntdll/tests/om.c
index cee8a76..0eacd20 100644
--- a/dlls/ntdll/tests/om.c
+++ b/dlls/ntdll/tests/om.c
@@ -139,13 +139,13 @@ static void test_namespace_pipe(void)
     InitializeObjectAttributes(&attr, &str, 0, 0, NULL);
     status = pNtOpenFile(&h, GENERIC_READ, &attr, &iosb, FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN);
     ok(status == STATUS_OBJECT_PATH_NOT_FOUND || status == STATUS_PIPE_NOT_AVAILABLE,
-        "pNtOpenFile should have failed with STATUS_OBJECT_PATH_NOT_FOUND got(%08x)\n", status);
+        "NtOpenFile should have failed with STATUS_OBJECT_PATH_NOT_FOUND got(%08x)\n", status);
 
     pRtlInitUnicodeString(&str, buffer4);
     InitializeObjectAttributes(&attr, &str, OBJ_CASE_INSENSITIVE, 0, NULL);
     status = pNtOpenFile(&h, GENERIC_READ, &attr, &iosb, FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN);
     ok(status == STATUS_OBJECT_NAME_NOT_FOUND,
-        "pNtOpenFile should have failed with STATUS_OBJECT_NAME_NOT_FOUND got(%08x)\n", status);
+        "NtOpenFile should have failed with STATUS_OBJECT_NAME_NOT_FOUND got(%08x)\n", status);
 
     pNtClose(pipe);
 }




More information about the wine-cvs mailing list