Module: wine Branch: master Commit: 3e8f6538c84ee1aab6d2cc929f3726198b7488b3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3e8f6538c84ee1aab6d2cc929f...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Tue Dec 2 16:55:04 2008 +0000
winedos: Sign-compare warning fix.
---
dlls/winedos/timer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
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;