From 004705e33e450c52d6753c55797885aedb6ad769 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 21 Jun 2015 20:18:58 -0700 Subject: [PATCH] Fix missing return statement Returning 0 implies success. Signed-off-by: Dirk Hohndel --- load-git.c | 1 + 1 file changed, 1 insertion(+) diff --git a/load-git.c b/load-git.c index 7cb6c7a0a..bd64da478 100644 --- a/load-git.c +++ b/load-git.c @@ -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)