diff: add missing static declaration
This function isn't used outside of diff.c; the 'static' was simply overlooked in the original writing. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
759ad19e77
commit
72cf484140
2
diff.c
2
diff.c
@ -1282,7 +1282,7 @@ static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two)
|
||||
emit_binary_diff_body(file, two, one);
|
||||
}
|
||||
|
||||
void diff_filespec_load_driver(struct diff_filespec *one)
|
||||
static void diff_filespec_load_driver(struct diff_filespec *one)
|
||||
{
|
||||
if (!one->driver)
|
||||
one->driver = userdiff_find_by_path(one->path);
|
||||
|
Loading…
Reference in New Issue
Block a user