Fix previous rule pointer not being initialized

This commit is contained in:
Bastien Dejean 2013-01-10 19:14:36 +01:00
parent e1e04bff2e
commit 65a84c1c7a

View file

@ -146,6 +146,7 @@ rule_t *make_rule(void)
r->effect.floating = false;
r->effect.monitor = NULL;
r->effect.desktop = NULL;
r->prev = NULL;
r->next = NULL;
return r;
}