Avoid warning about function without return.

Strangely, this warning only shows up when not compiling with "-O2",
which is why I didn't see it originally.
This commit is contained in:
Linus Torvalds 2005-06-18 20:02:49 -07:00
parent deb153a75a
commit 3d958064e0

View File

@ -149,7 +149,7 @@ static int count_distance(struct commit_list *entry)
return nr; return nr;
} }
static int clear_distance(struct commit_list *list) static void clear_distance(struct commit_list *list)
{ {
while (list) { while (list) {
struct commit *commit = list->item; struct commit *commit = list->item;