Skip to content

Commit 1ca6922

Browse files
tgummerergitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ef283b3 commit 1ca6922

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

range-diff.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ static int read_patches(const char *range, struct string_list *list)
148148
}
149149

150150
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)
152152
{
153153
return strcmp(a->diff, keydata ? keydata : b->diff);
154154
}
@@ -373,7 +373,7 @@ static struct diff_filespec *get_filespec(const char *name, const char *p)
373373
}
374374

375375
static void patch_diff(const char *a, const char *b,
376-
struct diff_options *diffopt)
376+
struct diff_options *diffopt)
377377
{
378378
diff_queue(&diff_queued_diff,
379379
get_filespec("a", a), get_filespec("b", b));

0 commit comments

Comments
 (0)