explorerframe: Don't cast NULL.

This commit is contained in:
Michael Stefaniuc 2010-08-15 22:27:36 +02:00 committed by Alexandre Julliard
parent af11c94b31
commit 7bef239bc4
1 changed files with 1 additions and 1 deletions

View File

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