Commit 7bef239b authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

explorerframe: Don't cast NULL.

parent af11c94b
......@@ -167,7 +167,7 @@ static IShellItem *shellitem_from_treeitem(NSTC2Impl *This, HTREEITEM hitem)
TVITEMEXW tvi;
tvi.mask = TVIF_PARAM;
tvi.lParam = (LPARAM)NULL;
tvi.lParam = 0;
tvi.hItem = hitem;
SendMessageW(This->hwnd_tv, TVM_GETITEMW, 0, (LPARAM)&tvi);
......
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