Fixed HeapRealloc typo.

This commit is contained in:
Marcus Meissner 2004-01-09 20:08:48 +00:00 committed by Alexandre Julliard
parent 2bc1816948
commit 17ffed02eb
1 changed files with 1 additions and 1 deletions

View File

@ -719,7 +719,7 @@ static int wodPlayer_WriteMaxFrags(WINE_WAVEOUT* wwo, DWORD* bytes)
{
if(wwo->sound_buffer)
{
HeapRealloc(GetProcessHeap(), 0, wwo->sound_buffer, toWrite);
wwo->sound_buffer = HeapReAlloc(GetProcessHeap(), 0, wwo->sound_buffer, toWrite);
wwo->buffer_size = toWrite;
}
}