Rémi Bernon (@rbernon) commented about dlls/bluetoothapis/main.c:
SetLastError( ERROR_INVALID_PARAMETER );
return NULL;
- }
- if (params->dwSize != sizeof( *params ))
- {
SetLastError( ERROR_REVISION_MISMATCH );
return NULL;
- }
- if (!(find = calloc( 1, sizeof( *find ) )))
- {
SetLastError( ERROR_OUTOFMEMORY );
return NULL;
- }
- find->devinfo =
SetupDiGetClassDevsW( &GUID_BTHPORT_DEVICE_INTERFACE, NULL, NULL, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE );
```suggestion:-1+0 find->devinfo = SetupDiGetClassDevsW( &GUID_BTHPORT_DEVICE_INTERFACE, NULL, NULL, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE ); ```
clang-format really likes to put dangling indents whenever it finds a line to be too long, this isn't Wine preferred code style. Please use longer lines, or wrap and align parameters instead, don't wrap right after assignments.