Fix gcc warning in send-pack.c

send_pack() was declared to return "int" (although nobody cared), but
didn't actually return anything.
maint
Linus Torvalds 2005-07-03 10:00:01 -07:00
parent 4d235c8044
commit 7ec4e60819
1 changed files with 1 additions and 0 deletions

View File

@ -108,6 +108,7 @@ static int pack_objects(int fd, struct ref *refs)
* We don't wait for the rev-list pipeline in the parent:
* we end up waiting for the other end instead
*/
return 0;
}

static int read_ref(const char *ref, unsigned char *sha1)