aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-31 15:53:15 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-31 15:53:15 +0100
commit3ee563c37fc9f48f7879128dfd5438b22f6772bc (patch)
tree88ae248180db83b3ba271560cf0e71188247881f /src
parent9a8a1902881890ffb8e19691b35ff53d9a237f3a (diff)
remove unnecessary initialization
Diffstat (limited to 'src')
-rw-r--r--src/css.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css.cc b/src/css.cc
index 39499e8e..1ccec390 100644
--- a/src/css.cc
+++ b/src/css.cc
@@ -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) {