Austin English : ntdll/tests: Remove a dead assignment (LLVM/Clang).

Alexandre Julliard julliard at winehq.org
Tue Jul 26 11:37:54 CDT 2011


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

Author: Austin English <austinenglish at gmail.com>
Date:   Mon Jul 25 18:54:31 2011 -0700

ntdll/tests: Remove a dead assignment (LLVM/Clang).

---

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

diff --git a/dlls/ntdll/tests/file.c b/dlls/ntdll/tests/file.c
index ac4ff19..aec869e 100644
--- a/dlls/ntdll/tests/file.c
+++ b/dlls/ntdll/tests/file.c
@@ -902,7 +902,7 @@ static void nt_mailslot_test(void)
         "rc = %x not STATUS_SUCCESS or STATUS_INVALID_PARAMETER\n", rc);
     ok( hslot != 0, "Handle is invalid\n");
 
-    if  ( rc == STATUS_SUCCESS ) rc = pNtClose(hslot);
+    if  ( rc == STATUS_SUCCESS ) pNtClose(hslot);
 
     /*
      * Test that the length field is checked properly




More information about the wine-cvs mailing list