From 99cf6d204e34c4cd4248b431d59d9984188b2c2f Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Tue, 13 Jun 2017 22:10:39 +0200 Subject: [PATCH] Make function definition match its declaration Signed-off-by: Sven Strickroth --- ext/gitdll/gitdll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gitdll/gitdll.c b/ext/gitdll/gitdll.c index a7e7f0dd2..6283eae73 100644 --- a/ext/gitdll/gitdll.c +++ b/ext/gitdll/gitdll.c @@ -657,7 +657,7 @@ int git_get_diff_file(GIT_DIFF diff, GIT_FILE file, int i, char** newname, char* } int git_add_exclude(const char *string, const char *base, - int baselen, struct exclude_list *which, int lineno) + int baselen, EXCLUDE_LIST which, int lineno) { add_exclude(string, base, baselen, which, lineno); return 0; -- 2.11.4.GIT