From: André Zwing nerv@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 )