diff --git a/timeoutd.c b/timeoutd.c index 60f9da4..4734067 100644 --- a/timeoutd.c +++ b/timeoutd.c @@ -467,9 +467,7 @@ void read_config() if (*lstart) { if (i == MAXLINES) bailout("Too many lines in timeouts config file.", 1); - if ((config[i] = (struct config_ent *) - malloc(sizeof(struct config_ent))) - == NULL) + if ((config[i] = (struct config_ent *) malloc(sizeof(struct config_ent))) == NULL) bailout("Out of memory", 1); config[i]->times = NULL; config[i]->ttys = NULL;