From 7805ff3291d19e1b4edd27ed113f913b6cb07c56 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Tue, 15 Jan 2013 22:27:02 +0000 Subject: [PATCH] dsound: Avoid signed-unsigned integer comparisons. --- dlls/dsound/primary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dsound/primary.c b/dlls/dsound/primary.c index dd810fdd089..0bfd56671cd 100644 --- a/dlls/dsound/primary.c +++ b/dlls/dsound/primary.c @@ -262,7 +262,7 @@ HRESULT DSOUND_PrimaryOpen(DirectSoundDevice *device) { IDirectSoundBufferImpl** dsb = device->buffers; LPBYTE newbuf; - DWORD i; + int i; TRACE("(%p)\n", device);