diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-09-26 16:09:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-26 16:09:21 -0700 |
commit | e683f17e6319b461def179b84d20dbcca546018a (patch) | |
tree | 83b8f3984ff989409a57073d754f3b42d75507a9 /builtin/checkout.c | |
parent | 48b21818ca5069285145b2fdb98f2e355637bb06 (diff) | |
parent | 68e3d6292f27f123c072175748183c9cb9bc1c70 (diff) | |
download | git-e683f17e6319b461def179b84d20dbcca546018a.tar.gz |
Merge branch 'rs/checkout-init-macro'
Code cleanup.
* rs/checkout-init-macro:
introduce CHECKOUT_INIT
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 f4b24a432a..9b2a5b31d4 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; |