shell32: Avoid signed-unsigned integer comparisons.

This commit is contained in:
Andrew Talbot 2013-02-25 21:14:00 +00:00 committed by Alexandre Julliard
parent a6369b8332
commit 1a190a9da3

View file

@ -574,7 +574,7 @@ HRESULT ItemMenu_Constructor(IShellFolder *parent, LPCITEMIDLIST pidl, const LPC
{
ContextMenu* This;
HRESULT hr;
int i;
UINT i;
This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
if (!This) return E_OUTOFMEMORY;