dinput/tests: Return void from test_winmm_joystick().

This commit is contained in:
Zebediah Figura 2023-10-03 12:04:23 -05:00 committed by Alexandre Julliard
parent 95e12689e6
commit a97a4af0dd

View file

@ -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 )