Module: wine Branch: master Commit: 33c3a75655e8a07cf150d9d2418e68bd63f06634 URL: http://source.winehq.org/git/wine.git/?a=commit;h=33c3a75655e8a07cf150d9d241...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Wed Jan 16 20:41:36 2013 +0000
explorerframe: Avoid signed-unsigned integer comparisons.
---
dlls/explorerframe/nstc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
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);