From e99d59ff0bff349ef205cef1076e0354c8130680 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Fri, 20 May 2005 11:46:10 -0700 Subject: sparse cleanup Fix various things that sparse complains about: - use NULL instead of 0 - make sure we declare everything properly, or mark it static - use proper function declarations ("fn(void)" instead of "fn()") Sparse is always right. --- merge-base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'merge-base.c') diff --git a/merge-base.c b/merge-base.c index 04f40fc8c5..12ebb95fba 100644 --- a/merge-base.c +++ b/merge-base.c @@ -15,7 +15,7 @@ static struct commit *process_list(struct commit_list **list_p, int this_mark, return NULL; } -struct commit *common_ancestor(struct commit *rev1, struct commit *rev2) +static struct commit *common_ancestor(struct commit *rev1, struct commit *rev2) { struct commit_list *rev1list = NULL; struct commit_list *rev2list = NULL; -- cgit v1.2.3