From: Elijah Newren Date: Fri, 12 Aug 2011 05:19:51 +0000 (-0600) Subject: merge-recursive: Mark some diff_filespec struct arguments const X-Git-Tag: v1.7.7-rc1~28^2~39 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0c05942087a14be4560d09299fb57117308a69d5;p=git.git merge-recursive: Mark some diff_filespec struct arguments const Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/merge-recursive.c b/merge-recursive.c index a7ba9b0aa..8ad4c7ef3 100644 --- a/merge-recursive.c +++ b/merge-recursive.c @@ -459,9 +459,10 @@ static struct string_list *get_renames(struct merge_options *o, return renames; } -static int update_stages_options(const char *path, struct diff_filespec *o, - struct diff_filespec *a, struct diff_filespec *b, - int clear, int options) +static int update_stages_options(const char *path, const struct diff_filespec *o, + const struct diff_filespec *a, + const struct diff_filespec *b, + int clear, int options) { if (clear) if (remove_file_from_cache(path)) @@ -710,9 +711,9 @@ struct merge_file_info { static int merge_3way(struct merge_options *o, mmbuffer_t *result_buf, - struct diff_filespec *one, - struct diff_filespec *a, - struct diff_filespec *b, + const struct diff_filespec *one, + const struct diff_filespec *a, + const struct diff_filespec *b, const char *branch1, const char *branch2) { @@ -770,9 +771,9 @@ static int merge_3way(struct merge_options *o, } static struct merge_file_info merge_file(struct merge_options *o, - struct diff_filespec *one, - struct diff_filespec *a, - struct diff_filespec *b, + const struct diff_filespec *one, + const struct diff_filespec *a, + const struct diff_filespec *b, const char *branch1, const char *branch2) {