Commit 3e919318 authored by Paul Rupe's avatar Paul Rupe Committed by Alexandre Julliard

Fix a couple INT/UINT comparisons.

parent 42a9ca57
......@@ -2044,7 +2044,7 @@ BOOL WineEngGetCharWidth(GdiFont font, UINT firstChar, UINT lastChar,
BOOL WineEngGetTextExtentPoint(GdiFont font, LPCWSTR wstr, INT count,
LPSIZE size)
{
UINT idx;
INT idx;
GLYPHMETRICS gm;
TEXTMETRICW tm;
FT_UInt glyph_index;
......@@ -2073,7 +2073,7 @@ BOOL WineEngGetTextExtentPoint(GdiFont font, LPCWSTR wstr, INT count,
BOOL WineEngGetTextExtentPointI(GdiFont font, const WORD *indices, INT count,
LPSIZE size)
{
UINT idx;
INT idx;
GLYPHMETRICS gm;
TEXTMETRICW tm;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment