Rémi Bernon (@rbernon) commented about dlls/bluetoothapis/tests/radio.c:
- HBLUETOOTH_RADIO_FIND find;
- DWORD err, exp;
- radio = dummy;
- SetLastError( 0xdeadbeef );
- find = BluetoothFindFirstRadio( NULL, &radio );
- ok ( !find, "Expected %p to be NULL\n", find );
- err = GetLastError();
- todo_wine ok( err == ERROR_INVALID_PARAMETER, "%lu != %d\n", err, ERROR_INVALID_PARAMETER );
- todo_wine ok( radio == dummy, "%p != %p\n", radio, dummy );
- radio = dummy;
- find_params.dwSize = 0;
- SetLastError( 0xdeadbeef );
- find = BluetoothFindFirstRadio( &find_params, &radio );
- ok ( !find, "Expected %p to be NULL\n", find );
```suggestion:-0+0 ok( !find, "Expected %p to be NULL\n", find ); ```