commit | 44be6c7cbfbb3729e374bc343e5224d2c498ec0a | [log] [tgz] |
---|---|---|
author | Andrew Talbot <andrew.talbot@talbotville.com> | Thu Oct 02 22:18:38 2008 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Oct 06 13:48:53 2008 +0200 |
tree | ae88017563b564f8ebb8603d97f5c700b8b16aaf | |
parent | 53160b600fe3274274cbc37f39c1defe09d5f283 [diff] [blame] |
gdi32: Sign-compare warnings fix.
diff --git a/dlls/gdi32/dib.c b/dlls/gdi32/dib.c index 440857d..299e27a 100644 --- a/dlls/gdi32/dib.c +++ b/dlls/gdi32/dib.c
@@ -1193,8 +1193,7 @@ static void DIB_CopyColorTable( DC *dc, BITMAPOBJ *bmp, WORD coloruse, const BITMAPINFO *info ) { RGBQUAD *colorTable; - unsigned int colors; - int i; + unsigned int colors, i; BOOL core_info = info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER); if (core_info)