]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Fix prototype.
authorMartin Pool <mbp@samba.org>
Mon, 8 Apr 2002 07:39:56 +0000 (07:39 +0000)
committerMartin Pool <mbp@samba.org>
Mon, 8 Apr 2002 07:39:56 +0000 (07:39 +0000)
pipe.c

diff --git a/pipe.c b/pipe.c
index 144621fb99d43b9b1340e7cbbdd3cc9533567d5a..4752958832af2138106ecf4e1dfedca7f1840a3c 100644 (file)
--- 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];