Reformat one line

This commit is contained in:
Petar Kapris 2021-01-05 19:58:12 +01:00
parent 99c35a4572
commit 90a3d933a7

View file

@ -467,9 +467,7 @@ void read_config()
if (*lstart) { if (*lstart) {
if (i == MAXLINES) if (i == MAXLINES)
bailout("Too many lines in timeouts config file.", 1); bailout("Too many lines in timeouts config file.", 1);
if ((config[i] = (struct config_ent *) if ((config[i] = (struct config_ent *) malloc(sizeof(struct config_ent))) == NULL)
malloc(sizeof(struct config_ent)))
== NULL)
bailout("Out of memory", 1); bailout("Out of memory", 1);
config[i]->times = NULL; config[i]->times = NULL;
config[i]->ttys = NULL; config[i]->ttys = NULL;