xmllite: Avoid signed-unsigned integer comparisons.

This commit is contained in:
Andrew Talbot 2013-03-07 22:22:42 +00:00 committed by Alexandre Julliard
parent c333c6ea6c
commit 2cc28bc7ae
1 changed files with 1 additions and 1 deletions

View File

@ -1190,7 +1190,7 @@ static HRESULT reader_parse_pitarget(xmlreader *reader, strval *target)
static const WCHAR xmlW[] = {'x','m','l'};
strval name;
HRESULT hr;
int i;
UINT i;
hr = reader_parse_name(reader, &name);
if (FAILED(hr)) return WC_E_PI;