summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src/modern_newrowopts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist_modern/src/modern_newrowopts.cpp')
-rw-r--r--plugins/Clist_modern/src/modern_newrowopts.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_newrowopts.cpp b/plugins/Clist_modern/src/modern_newrowopts.cpp
index b44ea0dbe3..3cbb3fc197 100644
--- a/plugins/Clist_modern/src/modern_newrowopts.cpp
+++ b/plugins/Clist_modern/src/modern_newrowopts.cpp
@@ -56,11 +56,11 @@ NodeList * AddNode(NodeList * Parent)
if ( !Parent)
{
res = (NodeList *)mir_alloc(sizeof(NodeList));
- memset(res,0,sizeof(NodeList));
+ memset(res, 0, sizeof(NodeList));
return res;
}
Parent->childNodes = (NodeList*) mir_realloc(Parent->childNodes,sizeof(NodeList)*(Parent->AllocatedChilds+1));
- memset(&(Parent->childNodes[Parent->AllocatedChilds]),0,sizeof(NodeList));
+ memset(&(Parent->childNodes[Parent->AllocatedChilds]), 0, sizeof(NodeList));
Parent->childNodes[Parent->AllocatedChilds].itemParent = Parent;
Parent->AllocatedChilds++;
return &(Parent->childNodes[Parent->AllocatedChilds-1]);