diff options
| author | Tom Schwindl <schwindl@posteo.de> | 2023-09-17 22:49:08 +0200 |
|---|---|---|
| committer | Tom Schwindl <schwindl@posteo.de> | 2023-09-17 22:49:08 +0200 |
| commit | 956238bb87677d9a065f2477b453a01c58a4c7f6 (patch) | |
| tree | f9d6273b4fd3325091a1c9e0ef695e52f5282614 | |
| parent | de315f878fba5b6abf2810a05995ae1f5b00d45d (diff) | |
| download | vis-956238bb87677d9a065f2477b453a01c58a4c7f6.tar.gz vis-956238bb87677d9a065f2477b453a01c58a4c7f6.tar.xz | |
vis-subprocess.c: fix signature of new_process_in_pool()
| -rw-r--r-- | vis-subprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vis-subprocess.c b/vis-subprocess.c index 5359820..eaeba2a 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; |
