Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2014-10-28 23:52:34 +0300
committerJunio C Hamano <gitster@pobox.com>2014-10-29 00:56:17 +0300
commit8828f2985f1967201c256fb01f92a91acfdb5001 (patch)
tree01bf1d97fa987db525a13283437230c857093762 /column.c
parentfbecd99861ea5795aeba46faf2ac7a8c1b70d485 (diff)
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>
Diffstat (limited to 'column.c')
-rw-r--r--column.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/column.c b/column.c
index 8082a944fd..786abe62b0 100644
--- a/column.c
+++ b/column.c
@@ -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");