diff options
Diffstat (limited to 'toys/pending/find.c')
-rw-r--r-- | toys/pending/find.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/find.c b/toys/pending/find.c index 58e554b8..1600f5f8 100644 --- a/toys/pending/find.c +++ b/toys/pending/find.c @@ -94,7 +94,7 @@ static int do_exec(struct filter_node *filter, struct dirtree *node) arg_array[filter->data.e.arg_path_index] = path; } - if (!(pid = fork())) xexec(arg_array); + if (!(pid = xfork())) xexec(arg_array); free(path); waitpid(pid, &status, 0); |