diff options
author | Matthieu Moy <Matthieu.Moy@imag.fr> | 2010-09-02 13:57:34 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-03 09:31:41 -0700 |
commit | e294030fe89efcdd92430b60cf9568ffbe7317a8 (patch) | |
tree | 574bbe6ed9e41ae61f130ba476f24da6b3847415 /builtin | |
parent | dc1166e685dc54946ea4600e962e56a965962ec2 (diff) | |
download | git-e294030fe89efcdd92430b60cf9568ffbe7317a8.tar.gz git-e294030fe89efcdd92430b60cf9568ffbe7317a8.tar.xz |
setup_unpack_trees_porcelain: take the whole options struct as parameter
This is a preparation patch to let setup_unpack_trees_porcelain set
show_all_errors itself.
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/checkout.c | 2 | ||||
-rw-r--r-- | builtin/merge.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/builtin/checkout.c b/builtin/checkout.c index 00cd1645c..f6caac104 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -373,7 +373,7 @@ static int merge_working_tree(struct checkout_opts *opts, topts.src_index = &the_index; topts.dst_index = &the_index; - setup_unpack_trees_porcelain(topts.msgs, "checkout"); + setup_unpack_trees_porcelain(&topts, "checkout"); refresh_cache(REFRESH_QUIET); diff --git a/builtin/merge.c b/builtin/merge.c index 20a28b218..a25951475 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -705,7 +705,7 @@ int checkout_fast_forward(const unsigned char *head, const unsigned char *remote opts.merge = 1; opts.fn = twoway_merge; opts.show_all_errors = 1; - setup_unpack_trees_porcelain(opts.msgs, "merge"); + setup_unpack_trees_porcelain(&opts, "merge"); trees[nr_trees] = parse_tree_indirect(head); if (!trees[nr_trees++]) |