Skip to content

Commit

Permalink
vis-subprocess.c: fix signature of new_process_in_pool()
Browse files Browse the repository at this point in the history
  • Loading branch information
tosch42 committed Sep 17, 2023
1 parent de315f8 commit 956238b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vis-subprocess.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 956238b

Please sign in to comment.