Commit 7445dcee authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/treeview: Remove redundant initializer (Clang).

parent 7d31d39f
...@@ -3026,7 +3026,7 @@ TREEVIEW_CountChildren(const TREEVIEW_ITEM *item) ...@@ -3026,7 +3026,7 @@ TREEVIEW_CountChildren(const TREEVIEW_ITEM *item)
static HDPA static HDPA
TREEVIEW_BuildChildDPA(const TREEVIEW_ITEM *item) TREEVIEW_BuildChildDPA(const TREEVIEW_ITEM *item)
{ {
HTREEITEM child = item->firstChild; HTREEITEM child;
HDPA list = DPA_Create(8); HDPA list = DPA_Create(8);
if (list == 0) return NULL; if (list == 0) return NULL;
......
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