range-diff: fix function parameter indentation

Fix the indentation of the function parameters for a couple of functions, to match the style in the rest of the file. Signed-off-by: Thomas Gummerer <t.gummerer@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Thomas Gummerer committed Jul 11, 2019 at 17:08 UTC 1ca69225981a915b0041f74047fe554b1580da5b
1 file changed +2 -2
range-diff.c
+2 -2
@@ -148,7 +148,7 @@ static int read_patches(const char *range, struct string_list *list)
148 }
149
150 static int patch_util_cmp(const void *dummy, const struct patch_util *a,
151 - const struct patch_util *b, const char *keydata)
151 + const struct patch_util *b, const char *keydata)
152 {
153 return strcmp(a->diff, keydata ? keydata : b->diff);
154 }
@@ -373,7 +373,7 @@ static struct diff_filespec *get_filespec(const char *name, const char *p)
373 }
374
375 static void patch_diff(const char *a, const char *b,
376 - struct diff_options *diffopt)
376 + struct diff_options *diffopt)
377 {
378 diff_queue(&diff_queued_diff,
379 get_filespec("a", a), get_filespec("b", b));