Commit 3bd8b3c6 authored by Eddie Leung's avatar Eddie Leung Committed by Alexandre Julliard

msg711.acm: Pointer cast changed to DWORD_PTR.

parent ff2f88cf
......@@ -876,7 +876,7 @@ static LRESULT G711_StreamOpen(PACMDRVSTREAMINSTANCE adsi)
aad = HeapAlloc(GetProcessHeap(), 0, sizeof(AcmG711Data));
if (aad == 0) return MMSYSERR_NOMEM;
adsi->dwDriver = (DWORD)aad;
adsi->dwDriver = (DWORD_PTR)aad;
if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_PCM &&
adsi->pwfxDst->wFormatTag == WAVE_FORMAT_PCM)
......
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