explorerframe: Don't cast NULL.

Michael Stefaniuc mstefani at redhat.de
Sun Aug 15 15:27:36 CDT 2010


---
 dlls/explorerframe/nstc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/explorerframe/nstc.c b/dlls/explorerframe/nstc.c
index 5f6de53..320b67d 100644
--- a/dlls/explorerframe/nstc.c
+++ b/dlls/explorerframe/nstc.c
@@ -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);
-- 
1.7.2.1



More information about the wine-patches mailing list