Andrew Talbot : dsound: Avoid signed-unsigned integer comparisons.

Alexandre Julliard julliard at winehq.org
Wed Jan 16 13:47:42 CST 2013


Module: wine
Branch: master
Commit: 7805ff3291d19e1b4edd27ed113f913b6cb07c56
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7805ff3291d19e1b4edd27ed113f913b6cb07c56

Author: Andrew Talbot <andrew.talbot at 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);
 




More information about the wine-cvs mailing list