Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-12-17 00:08:46 +0300
committerJunio C Hamano <gitster@pobox.com>2019-12-17 00:08:46 +0300
commitd1c0fe8d9b16bf8b6b1cc0e83fac6670e3f64f0f (patch)
tree8885156cb43cf3b23cb30f0409c57ac56c3b1c26 /range-diff.h
parent26c816a67de449b3c5284ab97b03aeeeeabbb45c (diff)
parentabcf8573005d548fe213aa7b4579394fa18692a1 (diff)
Merge branch 'dl/range-diff-with-notes'
Code clean-up. * dl/range-diff-with-notes: range-diff: clear `other_arg` at end of function range-diff: mark pointers as const t3206: fix incorrect test name
Diffstat (limited to 'range-diff.h')
-rw-r--r--range-diff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/range-diff.h b/range-diff.h
index c57ec7dab5..e11976dc81 100644
--- a/range-diff.h
+++ b/range-diff.h
@@ -13,7 +13,7 @@
*/
int show_range_diff(const char *range1, const char *range2,
int creation_factor, int dual_color,
- struct diff_options *diffopt,
- struct argv_array *other_arg);
+ const struct diff_options *diffopt,
+ const struct argv_array *other_arg);
#endif