summaryrefslogtreecommitdiff
path: root/merge-recursive.h
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2019-08-17 18:41:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-08-19 17:08:04 (GMT)
commitc749ab1da812cdb1263f868c63fe1808a12dcff2 (patch)
treec848d5d62cc04ef8f5807ae50874b801a9e309de /merge-recursive.h
parentbab56877e04efcf1bf9154398131dd57d73725d4 (diff)
downloadgit-c749ab1da812cdb1263f868c63fe1808a12dcff2.zip
git-c749ab1da812cdb1263f868c63fe1808a12dcff2.tar.gz
git-c749ab1da812cdb1263f868c63fe1808a12dcff2.tar.bz2
merge-recursive: rename merge_options argument to opt in header
In commit 259ccb6cc324 ("merge-recursive: rename merge_options argument from 'o' to 'opt'", 2019-04-05), I renamed a bunch of function arguments in merge-recursive.c, but forgot to make that same change to merge-recursive.h. Make the two match. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'merge-recursive.h')
-rw-r--r--merge-recursive.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/merge-recursive.h b/merge-recursive.h
index 6f35109..2cb3844 100644
--- a/merge-recursive.h
+++ b/merge-recursive.h
@@ -68,10 +68,10 @@ struct collision_entry {
unsigned reported_already:1;
};
-static inline int merge_detect_rename(struct merge_options *o)
+static inline int merge_detect_rename(struct merge_options *opt)
{
- return o->merge_detect_rename >= 0 ? o->merge_detect_rename :
- o->diff_detect_rename >= 0 ? o->diff_detect_rename : 1;
+ return opt->merge_detect_rename >= 0 ? opt->merge_detect_rename :
+ opt->diff_detect_rename >= 0 ? opt->diff_detect_rename : 1;
}
/*
@@ -85,7 +85,7 @@ static inline int merge_detect_rename(struct merge_options *o)
* commit. Also, merge_bases will be consumed (emptied) so make a
* copy if you need it.
*/
-int merge_recursive(struct merge_options *o,
+int merge_recursive(struct merge_options *opt,
struct commit *h1,
struct commit *h2,
struct commit_list *merge_bases,
@@ -95,7 +95,7 @@ int merge_recursive(struct merge_options *o,
* rename-detecting three-way merge, no recursion; result of merge is written
* to opt->repo->index.
*/
-int merge_trees(struct merge_options *o,
+int merge_trees(struct merge_options *opt,
struct tree *head,
struct tree *merge,
struct tree *merge_base);
@@ -104,16 +104,16 @@ int merge_trees(struct merge_options *o,
* "git-merge-recursive" can be fed trees; wrap them into
* virtual commits and call merge_recursive() proper.
*/
-int merge_recursive_generic(struct merge_options *o,
+int merge_recursive_generic(struct merge_options *opt,
const struct object_id *head,
const struct object_id *merge,
int num_merge_bases,
const struct object_id **merge_bases,
struct commit **result);
-void init_merge_options(struct merge_options *o,
+void init_merge_options(struct merge_options *opt,
struct repository *repo);
-int parse_merge_opt(struct merge_options *out, const char *s);
+int parse_merge_opt(struct merge_options *opt, const char *s);
#endif