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

This commit is contained in:
Adam Stoelting 2009-02-21 19:00:12 -08:00 committed by Alexandre Julliard
parent f322cc3d1f
commit 23066a5e73
1 changed files with 1 additions and 1 deletions

View File

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