diff options
author | René Scharfe <l.s.r@web.de> | 2014-10-28 21:52:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-10-28 14:56:17 -0700 |
commit | 8828f2985f1967201c256fb01f92a91acfdb5001 (patch) | |
tree | 01bf1d97fa987db525a13283437230c857093762 /bundle.c | |
parent | fbecd99861ea5795aeba46faf2ac7a8c1b70d485 (diff) | |
download | git-8828f2985f1967201c256fb01f92a91acfdb5001.tar.gz |
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 'bundle.c')
-rw-r--r-- | bundle.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -381,7 +381,7 @@ int create_bundle(struct bundle_header *header, const char *path, write_or_die(bundle_fd, "\n", 1); /* write pack */ - memset(&rls, 0, sizeof(rls)); + child_process_init(&rls); argv_array_pushl(&rls.args, "pack-objects", "--all-progress-implied", "--stdout", "--thin", "--delta-base-offset", |