diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2018-06-05 14:40:44 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-11 09:41:01 -0700 |
commit | e417151b24bcf1277a48fc6e9a5c184998402428 (patch) | |
tree | cf46c535c67f31b78a481d73255abb128d1c317e | |
parent | checkout.h: wrap the arguments to unique_tracking_name() (diff) | |
download | tgif-e417151b24bcf1277a48fc6e9a5c184998402428.tar.xz |
checkout.c: introduce an *_INIT macro
Add an *_INIT macro for the tracking_name_data similar to what exists
elsewhere in the codebase, e.g. OID_ARRAY_INIT in sha1-array.h. This
will make it more idiomatic in later changes to add more fields to the
struct & its initialization macro.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | checkout.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/checkout.c b/checkout.c index bdefc888ba..80e430cda8 100644 --- a/checkout.c +++ b/checkout.c @@ -10,6 +10,8 @@ struct tracking_name_data { int unique; }; +#define TRACKING_NAME_DATA_INIT { NULL, NULL, NULL, 1 } + static int check_tracking_name(struct remote *remote, void *cb_data) { struct tracking_name_data *cb = cb_data; @@ -32,7 +34,7 @@ static int check_tracking_name(struct remote *remote, void *cb_data) const char *unique_tracking_name(const char *name, struct object_id *oid) { - struct tracking_name_data cb_data = { NULL, NULL, NULL, 1 }; + struct tracking_name_data cb_data = TRACKING_NAME_DATA_INIT; cb_data.src_ref = xstrfmt("refs/heads/%s", name); cb_data.dst_oid = oid; for_each_remote(check_tracking_name, &cb_data); |