From b44be3e944d80a91a0957b1951110e4acc821e55 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 8 Apr 2002 07:39:56 +0000 Subject: [PATCH] Fix prototype. --- pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipe.c b/pipe.c index 144621fb..47529588 100644 --- a/pipe.c +++ b/pipe.c @@ -94,7 +94,7 @@ pid_t piped_child(char **command, int *f_in, int *f_out) } pid_t local_child(int argc, char **argv,int *f_in,int *f_out, - int (*child_main)(int, char **)) + int (*child_main)(int, char*[])) { pid_t pid; int to_child_pipe[2]; -- 2.34.1