Commit 2cc28bc7 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

xmllite: Avoid signed-unsigned integer comparisons.

parent c333c6ea
......@@ -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;
......
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