Commit 33c3a756 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

explorerframe: Avoid signed-unsigned integer comparisons.

parent c46636b1
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment