Gerald Pfeifer : user32: Fix type of loop variable.
Module: wine Branch: master Commit: 2ea16a49e8ebcbd68036e092715272e9af1ef1c3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2ea16a49e8ebcbd68036e09271... Author: Gerald Pfeifer <gerald(a)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 */ {
participants (1)
-
Alexandre Julliard