Commit 1a190a9d authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shell32: Avoid signed-unsigned integer comparisons.

parent a6369b83
......@@ -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;
......
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