Andrew Talbot : xmllite: Avoid signed-unsigned integer comparisons.

Alexandre Julliard julliard at winehq.org
Fri Mar 8 14:00:36 CST 2013


Module: wine
Branch: master
Commit: 2cc28bc7ae96b0ddc685e9bd53a71c5b68268543
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2cc28bc7ae96b0ddc685e9bd53a71c5b68268543

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Thu Mar  7 22:22:42 2013 +0000

xmllite: Avoid signed-unsigned integer comparisons.

---

 dlls/xmllite/reader.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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-cvs mailing list