mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
msvc6 warning fix - cast return value of SHAlloc()
svn path=/trunk/; revision=17823
This commit is contained in:
parent
6ad405d90f
commit
6994c4711b
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ static HTREEITEM InsertTreeViewItem( browse_info *info, IShellFolder * lpsf,
|
|||
tvi.cChildren= pEnumIL ? 1 : 0;
|
||||
tvi.mask |= TVIF_CHILDREN;
|
||||
|
||||
lptvid = SHAlloc( sizeof(TV_ITEMDATA) );
|
||||
lptvid = (LPTV_ITEMDATA)SHAlloc( sizeof(TV_ITEMDATA) );
|
||||
if (!lptvid)
|
||||
return NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue