=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: kernel32/tests: Fix two typos.

Alexandre Julliard julliard at winehq.org
Tue Nov 15 13:17:31 CST 2011


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sun Nov 13 19:20:34 2011 +0100

kernel32/tests: Fix two typos.

---

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

diff --git a/dlls/kernel32/tests/actctx.c b/dlls/kernel32/tests/actctx.c
index b7f3010..3af6e63 100644
--- a/dlls/kernel32/tests/actctx.c
+++ b/dlls/kernel32/tests/actctx.c
@@ -591,7 +591,7 @@ static HANDLE test_create(const char *file, const char *manifest)
     ok(handle != INVALID_HANDLE_VALUE, "handle == INVALID_HANDLE_VALUE, error %u\n", GetLastError());
 
     ok(actctx.cbSize == sizeof(actctx), "actctx.cbSize=%d\n", actctx.cbSize);
-    ok(actctx.dwFlags == 0, "actctx.=%d\n", actctx.dwFlags);
+    ok(actctx.dwFlags == 0, "actctx.dwFlags=%d\n", actctx.dwFlags);
     ok(actctx.lpSource == path, "actctx.lpSource=%p\n", actctx.lpSource);
     ok(actctx.wProcessorArchitecture == 0,
        "actctx.wProcessorArchitecture=%d\n", actctx.wProcessorArchitecture);
@@ -599,7 +599,7 @@ static HANDLE test_create(const char *file, const char *manifest)
     ok(actctx.lpAssemblyDirectory == NULL,
        "actctx.lpAssemblyDirectory=%p\n", actctx.lpAssemblyDirectory);
     ok(actctx.lpResourceName == NULL, "actctx.lpResourceName=%p\n", actctx.lpResourceName);
-    ok(actctx.lpApplicationName == NULL, "actctx.lpApplocationName=%p\n",
+    ok(actctx.lpApplicationName == NULL, "actctx.lpApplicationName=%p\n",
        actctx.lpApplicationName);
     ok(actctx.hModule == NULL, "actctx.hModule=%p\n", actctx.hModule);
 




More information about the wine-cvs mailing list