From a97a4af0ddd237108b42ca4c4239b5d207b085b5 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Tue, 3 Oct 2023 12:04:23 -0500 Subject: [PATCH] dinput/tests: Return void from test_winmm_joystick(). --- dlls/dinput/tests/joystick8.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/dinput/tests/joystick8.c b/dlls/dinput/tests/joystick8.c index 788f59549c2..0553cb96a63 100644 --- a/dlls/dinput/tests/joystick8.c +++ b/dlls/dinput/tests/joystick8.c @@ -4464,7 +4464,7 @@ done: cleanup_registry_keys(); } -static BOOL test_winmm_joystick(void) +static void test_winmm_joystick(void) { #include "psh_hid_macros.h" const unsigned char report_desc[] = @@ -4821,8 +4821,6 @@ static BOOL test_winmm_joystick(void) done: hid_device_stop( &desc, 1 ); cleanup_registry_keys(); - - return device != NULL; } #define check_interface( a, b, c ) check_interface_( __LINE__, a, b, c )