From: Piotr Caban Subject: [PATCH 4/4] msvcr120/tests: Remove unneded casts Message-Id: Date: Thu, 23 Jun 2016 10:02:24 +0200 Signed-off-by: Piotr Caban --- dlls/msvcr120/tests/msvcr120.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msvcr120/tests/msvcr120.c b/dlls/msvcr120/tests/msvcr120.c index 6ee659f..30d375e 100644 --- a/dlls/msvcr120/tests/msvcr120.c +++ b/dlls/msvcr120/tests/msvcr120.c @@ -589,7 +589,7 @@ static critical_section cs; static unsigned __stdcall test_critical_section_lock(void *arg) { critical_section *native_handle; - native_handle = (critical_section*)call_func1(p_critical_section_native_handle, &cs); + native_handle = call_func1(p_critical_section_native_handle, &cs); ok(native_handle == &cs, "native_handle = %p\n", native_handle); call_func1(p_critical_section_lock, &cs); ok(enter_flag == 1, "enter_flag = %d\n", enter_flag);