winemp3.acm: Changed pointer cast from DWORD to DWORD_PTR.

This commit is contained in:
Adam Stoelting 2009-02-21 19:19:09 -08:00 committed by Alexandre Julliard
parent 23066a5e73
commit f88e16987e

View file

@ -419,7 +419,7 @@ static LRESULT MPEG3_StreamOpen(PACMDRVSTREAMINSTANCE adsi)
aad = HeapAlloc(GetProcessHeap(), 0, sizeof(AcmMpeg3Data));
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)