From: André Zwing <nerv(a)dawncrow.de> --- dlls/bluetoothapis/tests/device.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/bluetoothapis/tests/device.c b/dlls/bluetoothapis/tests/device.c index ef79913f558..a6ee6c6f1d5 100644 --- a/dlls/bluetoothapis/tests/device.c +++ b/dlls/bluetoothapis/tests/device.c @@ -171,7 +171,8 @@ void test_radio_BluetoothFindNextDevice( HANDLE radio, void *data ) break; } - ok( BluetoothFindDeviceClose( hfind ), "BluetoothFindDeviceClose failed: %lu\n", GetLastError() ); + success = BluetoothFindDeviceClose( hfind ); + ok( success, "BluetoothFindDeviceClose failed: %lu\n", GetLastError() ); } void test_BluetoothFindNextDevice( void ) -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7726