dmusic: Remove superfluous cast.

This commit is contained in:
André Hentschel 2013-07-01 22:55:10 +02:00 committed by Alexandre Julliard
parent 795c732c0d
commit b75f5c728d
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ static HRESULT WINAPI SynthPortImpl_IDirectMusicPort_DownloadInstrument(LPDIRECT
nb_regions = instrument_object->header.cRegions;
size = sizeof(DMUS_DOWNLOADINFO) + sizeof(ULONG) * (1 + nb_regions) + sizeof(DMUS_INSTRUMENT) + sizeof(DMUS_REGION) * nb_regions;
data = (BYTE*)HeapAlloc(GetProcessHeap(), 0, size);
data = HeapAlloc(GetProcessHeap(), 0, size);
if (!data)
return E_OUTOFMEMORY;