Francois Gouget : kernel32/tests: Remove an unused assignment in the comm test.

Alexandre Julliard julliard at winehq.org
Thu Nov 21 16:33:27 CST 2019


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

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Thu Nov 21 15:56:35 2019 +0100

kernel32/tests: Remove an unused assignment in the comm test.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernel32/tests/comm.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dlls/kernel32/tests/comm.c b/dlls/kernel32/tests/comm.c
index 97da932d6c..a43a290947 100644
--- a/dlls/kernel32/tests/comm.c
+++ b/dlls/kernel32/tests/comm.c
@@ -907,7 +907,6 @@ static void test_waittxempty(void)
             S(U(ovl_write)).Offset = 0;
             S(U(ovl_write)).OffsetHigh = 0;
             ovl_write.hEvent = CreateEventW(NULL, TRUE, FALSE, NULL);
-            before = GetTickCount();
             SetLastError(0xdeadbeef);
             res = WriteFile(hcom, tbuf, sizeof(tbuf), &bytes, &ovl_write);
             ok((!res && GetLastError() == ERROR_IO_PENDING) || (res && bytes == sizeof(tbuf)),




More information about the wine-cvs mailing list