Gerald Pfeifer : user32: Fix type of loop variable.

Alexandre Julliard julliard at winehq.org
Mon Dec 31 12:32:30 CST 2007


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

Author: Gerald Pfeifer <gerald at pfeifer.com>
Date:   Sat Dec 29 09:41:02 2007 +0100

user32: Fix type of loop variable.

---

 dlls/user32/sysparams.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/user32/sysparams.c b/dlls/user32/sysparams.c
index 8cd2dcb..11cdc9f 100644
--- a/dlls/user32/sysparams.c
+++ b/dlls/user32/sysparams.c
@@ -2898,7 +2898,7 @@ BOOL WINAPI SetSysColors( INT nChanges, const INT *lpSysColor,
  */
 DWORD WINAPI SetSysColorsTemp( const COLORREF *pPens, const HBRUSH *pBrushes, DWORD n)
 {
-    int i;
+    DWORD i;
 
     if (pPens && pBrushes) /* "set" call */
     {




More information about the wine-cvs mailing list