Commit d2d288b1 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

gdi.exe16: Avoid signed-unsigned integer comparisons.

parent e727e44d
...@@ -2361,7 +2361,7 @@ BOOL16 WINAPI GetCharWidth16( HDC16 hdc, UINT16 firstChar, UINT16 lastChar, LPIN ...@@ -2361,7 +2361,7 @@ BOOL16 WINAPI GetCharWidth16( HDC16 hdc, UINT16 firstChar, UINT16 lastChar, LPIN
if( buf32 ) if( buf32 )
{ {
LPINT obuf32 = buf32; LPINT obuf32 = buf32;
int i; UINT i;
retVal = GetCharWidth32A( HDC_32(hdc), firstChar, lastChar, buf32); retVal = GetCharWidth32A( HDC_32(hdc), firstChar, lastChar, buf32);
if (retVal) if (retVal)
......
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