Dmitry Timoshkov : kernel32: Fix a typo.

Alexandre Julliard julliard at winehq.org
Wed May 29 14:47:33 CDT 2013


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

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Wed May 29 10:39:54 2013 +0900

kernel32: Fix a typo.

---

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

diff --git a/dlls/kernel32/tests/process.c b/dlls/kernel32/tests/process.c
index 350c858..64e333e 100644
--- a/dlls/kernel32/tests/process.c
+++ b/dlls/kernel32/tests/process.c
@@ -1612,8 +1612,8 @@ static void test_GetProcessVersion(void)
     si.cb = sizeof(si);
     si.dwFlags = STARTF_USESHOWWINDOW;
     si.wShowWindow = SW_HIDE;
-    ret = CreateProcessA(NULL, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
     SetLastError(0xdeadbeef);
+    ret = CreateProcessA(NULL, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
     ok(ret, "CreateProcess error %u\n", GetLastError());
 
     SetLastError(0xdeadbeef);




More information about the wine-cvs mailing list