Commit d4bd5aaa authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

xaudio2_7: Use correct integral type.

parent b5ad46a5
......@@ -1291,7 +1291,7 @@ static void WINAPI XA2M_GetChannelMask(IXAudio2MasteringVoice *iface,
TRACE("%p, %p\n", This, pChannelMask);
FAudioMasteringVoice_GetChannelMask(This->faudio_voice, pChannelMask);
FAudioMasteringVoice_GetChannelMask(This->faudio_voice, (uint32_t *)pChannelMask);
}
static const struct IXAudio2MasteringVoiceVtbl XAudio2MasteringVoice_Vtbl = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment