From 90a3d933a79206e54661542f425fc2ff3da8b9ea Mon Sep 17 00:00:00 2001 From: Petar Kapris Date: Tue, 5 Jan 2021 19:58:12 +0100 Subject: [PATCH] Reformat one line --- timeoutd.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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;