explorerframe: Avoid signed-unsigned integer comparisons

Andrew Talbot andrew.talbot at talbotville.com
Wed Jan 16 14:41:36 CST 2013


Changelog:
    explorerframe: Avoid signed-unsigned integer comparisons.

diff --git a/dlls/explorerframe/nstc.c b/dlls/explorerframe/nstc.c
index 00ad1f6..d5e78e7 100644
--- a/dlls/explorerframe/nstc.c
+++ b/dlls/explorerframe/nstc.c
@@ -973,7 +973,7 @@ static HRESULT WINAPI NSTC2_fnInsertRoot(INameSpaceTreeControl2* iface,
     nstc_root *new_root;
     struct list *add_after_entry;
     HTREEITEM add_after_hitem;
-    UINT i;
+    int i;
 
     TRACE("%p, %d, %p, %x, %x, %p\n", This, iIndex, psiRoot, grfEnumFlags, grfRootStyle, pif);
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20130116/667b6ff0/attachment.html>


More information about the wine-patches mailing list