dsound: Avoid signed-unsigned integer comparisons

Andrew Talbot andrew.talbot at talbotville.com
Tue Jan 15 16:27:02 CST 2013


Changelog:
    dsound: Avoid signed-unsigned integer comparisons.

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);
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20130115/9bcd05f0/attachment.html>


More information about the wine-patches mailing list