diff options
author | Brandon Williams <bmwill@google.com> | 2017-10-30 12:46:43 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-31 13:33:08 +0900 |
commit | c9f348e926d300c4e254299b92e9bfe1678512d6 (patch) | |
tree | d3ce0cffceb2723bb06554e7db7ebe872426102d /builtin/reset.c | |
parent | 2f899857a9f425cb59f8a15c2ea7a52100c51a23 (diff) | |
download | git-c9f348e926d300c4e254299b92e9bfe1678512d6.tar.gz |
add, reset: use DIFF_OPT_SET macro to set a diff flag
Instead of explicitly setting the 'DIFF_OPT_OVERRIDE_SUBMODULE_CONFIG'
flag, use the 'DIFF_OPT_SET' macro.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/reset.c')
-rw-r--r-- | builtin/reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reset.c b/builtin/reset.c index 9cd89b2305..ea2fad5a0f 100644 --- a/builtin/reset.c +++ b/builtin/reset.c @@ -166,7 +166,7 @@ static int read_from_tree(const struct pathspec *pathspec, opt.output_format = DIFF_FORMAT_CALLBACK; opt.format_callback = update_index_from_diff; opt.format_callback_data = &intent_to_add; - opt.flags |= DIFF_OPT_OVERRIDE_SUBMODULE_CONFIG; + DIFF_OPT_SET(&opt, OVERRIDE_SUBMODULE_CONFIG); if (do_diff_cache(tree_oid, &opt)) return 1; |