winedos: Sign-compare warning fix

Andrew Talbot andrew.talbot at talbotville.com
Tue Dec 2 10:55:04 CST 2008


Changelog:
    winedos: Sign-compare warning fix.

diff --git a/dlls/winedos/timer.c b/dlls/winedos/timer.c
index 74e41b5..0a504af 100644
--- a/dlls/winedos/timer.c
+++ b/dlls/winedos/timer.c
@@ -99,7 +99,7 @@ static void CALLBACK TIMER_TimerProc( HWND     hwnd,
     }
     else
     {
-        int i;
+        DWORD i;
 
         /* Calculate the number of valid timer interrupts we can generate */
         DWORD count = delta / TIMER_millis;



More information about the wine-patches mailing list