From 956238bb87677d9a065f2477b453a01c58a4c7f6 Mon Sep 17 00:00:00 2001 From: Tom Schwindl Date: Sun, 17 Sep 2023 22:49:08 +0200 Subject: [PATCH] vis-subprocess.c: fix signature of new_process_in_pool() --- vis-subprocess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vis-subprocess.c b/vis-subprocess.c index 5359820b6..eaeba2ab8 100644 --- a/vis-subprocess.c +++ b/vis-subprocess.c @@ -16,7 +16,7 @@ static Process *process_pool; * returns it * @return a new Process instance */ -Process *new_process_in_pool() { +static Process *new_process_in_pool(void) { Process *newprocess = malloc(sizeof(Process)); if (!newprocess) { return NULL;