Fix missing return statement

Returning 0 implies success.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-06-21 20:18:58 -07:00
parent 6811f77cdd
commit 004705e33e

View file

@ -1471,6 +1471,7 @@ static int parse_picture_file(git_repository *repo, const git_tree_entry *entry,
pel->len = len;
pel->hash = strdup(name + 4);
git_blob_free(blob);
return 0;
}
static int parse_picture_entry(git_repository *repo, const git_tree_entry *entry, const char *name)