shared: remove return value from cgit_free_commitinfo()

This return value is never used and the function always returns NULL.

Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
John Keeping 2016-08-13 11:51:58 +01:00
parent 000cf294c4
commit d9dff37691
2 changed files with 2 additions and 3 deletions

View file

@ -95,7 +95,7 @@ struct cgit_repo *cgit_get_repoinfo(const char *url)
return NULL;
}
void *cgit_free_commitinfo(struct commitinfo *info)
void cgit_free_commitinfo(struct commitinfo *info)
{
free(info->author);
free(info->author_email);
@ -105,7 +105,6 @@ void *cgit_free_commitinfo(struct commitinfo *info)
free(info->msg);
free(info->msg_encoding);
free(info);
return NULL;
}
char *trim_end(const char *str, char c)