cvsimport

This commit is contained in:
Christian Neukirchen
2015-01-24 17:03:58 +00:00
2 changed files with 6 additions and 7 deletions

2
conf.c
View File

@@ -96,7 +96,7 @@ conf_ignore(struct conf *c, const char *name)
{
struct winname *wn;
wn = xcalloc(1, sizeof(*wn));
wn = xmalloc(sizeof(*wn));
wn->name = xstrdup(name);
TAILQ_INSERT_TAIL(&c->ignoreq, wn, entry);
}