Module: wine Branch: master Commit: 7805ff3291d19e1b4edd27ed113f913b6cb07c56 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7805ff3291d19e1b4edd27ed11...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Tue Jan 15 22:27:02 2013 +0000
dsound: Avoid signed-unsigned integer comparisons.
---
dlls/dsound/primary.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dsound/primary.c b/dlls/dsound/primary.c index dd810fd..0bfd5667 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);