use child_process_init() to initialize struct child_process variables

Call child_process_init() instead of zeroing the memory of variables of
type struct child_process by hand before use because the former is both
clearer and shorter.

Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
René Scharfe
2014-10-28 21:52:34 +01:00
committed by Junio C Hamano
parent fbecd99861
commit 8828f2985f
4 changed files with 4 additions and 4 deletions

View File

@@ -374,7 +374,7 @@ int run_column_filter(int colopts, const struct column_options *opts)
if (fd_out != -1)
return -1;
memset(&column_process, 0, sizeof(column_process));
child_process_init(&column_process);
argv = &column_process.args;
argv_array_push(argv, "column");