From 8828f2985f1967201c256fb01f92a91acfdb5001 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Scharfe?= Date: Tue, 28 Oct 2014 21:52:34 +0100 Subject: 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 Signed-off-by: Junio C Hamano --- column.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'column.c') 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"); -- cgit v1.2.3