vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit e30f565af77ebcfd5073005aab7f54570aa0ae8c parent 726776c01cc0824407f282b5f270bd6b0a95ddd5 Author: Tom Schwindl <schwindl@posteo.de> Date: Sun, 17 Sep 2023 22:49:08 +0200 vis-subprocess.c: fix signature of new_process_in_pool() Diffstat:
| M | vis-subprocess.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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;