diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-31 15:53:15 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-31 15:53:15 +0100 |
commit | 3ee563c37fc9f48f7879128dfd5438b22f6772bc (patch) | |
tree | 88ae248180db83b3ba271560cf0e71188247881f /src | |
parent | 9a8a1902881890ffb8e19691b35ff53d9a237f3a (diff) |
remove unnecessary initialization
Diffstat (limited to 'src')
-rw-r--r-- | src/css.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ void CssStyleSheet::addRule (CssRule *rule) { void CssStyleSheet::apply (CssPropertyList *props, Doctree *docTree, const DoctreeNode *node) { - RuleList *ruleList[4] = {NULL, NULL, NULL, NULL}; + RuleList *ruleList[4]; int numLists = 0, index[4] = {0, 0, 0, 0}; if (node->id) { |