From b5e9663af85d5512495f2be3d921d0dc2da6e6d3 Mon Sep 17 00:00:00 2001 From: Marcos CARDINOT Date: Sun, 22 Mar 2015 22:53:16 -0300 Subject: [PATCH] load-git::walk_tree_file - missing break in switch Let's be consistent and avoid potential future bugs. Signed-off-by: Marcos CARDINOT 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 be25e8e94..d8052a550 100644 --- a/load-git.c +++ b/load-git.c @@ -1460,6 +1460,7 @@ static int walk_tree_file(const char *root, const git_tree_entry *entry, git_rep case 'S': if (!strncmp(name, "Site", 4)) return parse_site_entry(repo, entry, name + 5); + break; case '0': if (trip && !strcmp(name, "00-Trip")) return parse_trip_entry(repo, entry);