xmllite: Avoid signed-unsigned integer comparisons

Andrew Talbot andrew.talbot at talbotville.com
Thu Mar 7 16:22:42 CST 2013


Changelog:
    xmllite: Avoid signed-unsigned integer comparisons.

diff --git a/dlls/xmllite/reader.c b/dlls/xmllite/reader.c
index 7bec2b1..c6f416d 100644
--- a/dlls/xmllite/reader.c
+++ b/dlls/xmllite/reader.c
@@ -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;




More information about the wine-patches mailing list