writelog: remove return value, it was unused

This commit is contained in:
Hiltjo Posthuma 2015-12-20 17:11:06 +01:00
parent e01336e656
commit 372fe8d86e

View file

@ -409,14 +409,13 @@ printshowfile(struct commitinfo *ci)
return;
}
int
void
writelog(FILE *fp)
{
struct commitinfo *ci;
git_revwalk *w = NULL;
git_oid id;
size_t len;
int ret = 0;
mkdir("commit", 0755);
@ -469,8 +468,6 @@ writelog(FILE *fp)
git_revwalk_free(w);
relpath = "";
return ret;
}
void