From 5a56fba741f9dea1963418aef22c2d9b08c9196c Mon Sep 17 00:00:00 2001 From: Austin English Date: Mon, 25 Jul 2011 18:54:31 -0700 Subject: [PATCH] ntdll/tests: Remove a dead assignment (LLVM/Clang). --- dlls/ntdll/tests/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/file.c b/dlls/ntdll/tests/file.c index ac4ff19cdfc..aec869ed125 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 -- 2.11.4.GIT