dsound: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-01-31 14:15:17 +01:00 committed by Alexandre Julliard
parent a41b45a8c5
commit c5b0974b93

View file

@ -694,7 +694,8 @@ static void DSOUND_WaveQueue(DirectSoundDevice *device, LPBYTE pos, DWORD bytes)
*/
static void DSOUND_PerformMix(DirectSoundDevice *device)
{
DWORD block, pad_frames, pad_bytes, frames;
DWORD block, pad_bytes, frames;
UINT32 pad_frames;
HRESULT hr;
TRACE("(%p)\n", device);