7 Aug
2022
7 Aug
'22
6:12 a.m.
Davide Beatrici (@davidebeatrici) commented about dlls/winepulse.drv/pulse.c:
- case VT_UI4: - params32->ulVal = params.ulVal; - break; - case VT_LPWSTR: - wcscpy(params32->wstr, params.wstr); - break; - default: - FIXME("Unhandled vt %04x\n", params.vt); + case VT_UI4: + value32->ulVal = value.ulVal; + break; + case VT_LPWSTR: + value32->ptr = params32->buffer; + break; + default: + FIXME("Unhandled vt %04x\n", value.vt); Which one is the correct indentation?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/600#note_5777