explorerframe: Avoid signed-unsigned integer comparisons.

This commit is contained in:
Andrew Talbot 2013-01-16 20:41:36 +00:00 committed by Alexandre Julliard
parent c46636b1cf
commit 33c3a75655
1 changed files with 1 additions and 1 deletions

View File

@ -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);