Rémi Bernon (@rbernon) commented about dlls/bluetoothapis/sdp.c:
case SDP_TYPE_SEQUENCE:
case SDP_TYPE_ALTERNATIVE:
break;
default:
SetLastError( ERROR_INVALID_DATA );
return FALSE;
- }
- while (TRUE)
- {
SDP_ELEMENT_DATA attrid = {0};
SDP_ELEMENT_DATA attr = {0};
BYTE *raw_attr_stream;
result = BluetoothSdpGetContainerElementData(
data.data.sequence.value, data.data.sequence.length, &cursor, &attrid );
```suggestion:-1+0 result = BluetoothSdpGetContainerElementData( data.data.sequence.value, data.data.sequence.length, &cursor, &attrid ); ```
You used this style for continuation above and below, and it better matches the "space in paren" Wine code style. Don't be afraid of longer lines when it makes things more readable.