diff options
author | René Scharfe <l.s.r@web.de> | 2016-09-22 18:11:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-22 13:42:18 -0700 |
commit | 68e3d6292f27f123c072175748183c9cb9bc1c70 (patch) | |
tree | 3a3fcb89a074a31c3f0689c207f3390612b12379 /builtin/checkout.c | |
parent | Fourth batch for 2.11 (diff) | |
download | tgif-68e3d6292f27f123c072175748183c9cb9bc1c70.tar.xz |
introduce CHECKOUT_INIT
Add a static initializer for struct checkout and use it throughout the
code base. It's shorter, avoids a memset(3) call and makes sure the
base_dir member is initialized to a valid (empty) string.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/checkout.c')
-rw-r--r-- | builtin/checkout.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/checkout.c b/builtin/checkout.c index 9941abc3ac..4c86272087 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -239,7 +239,7 @@ static int checkout_paths(const struct checkout_opts *opts, const char *revision) { int pos; - struct checkout state; + struct checkout state = CHECKOUT_INIT; static char *ps_matched; struct object_id rev; struct commit *head; @@ -352,7 +352,6 @@ static int checkout_paths(const struct checkout_opts *opts, return 1; /* Now we are committed to check them out */ - memset(&state, 0, sizeof(state)); state.force = 1; state.refresh_cache = 1; state.istate = &the_index; |