From: Junio C Hamano Date: Tue, 26 Apr 2005 17:13:31 +0000 (-0700) Subject: [PATCH] diff-cache buglet X-Git-Tag: v0.99~739 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=5697ecc7be275f884d4f843d0f77f19de2eb604c;p=git.git [PATCH] diff-cache buglet diff-cache attempts to first remove all merge entries before letting the diff_cache() do its work, but it incorrectly stops after the first merge-entry it finds. Fix by just replacing the "break" with a "continue". Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- diff --git a/diff-cache.c b/diff-cache.c index 2ec6c29a..c7fa84bf 100644 --- a/diff-cache.c +++ b/diff-cache.c @@ -76,7 +76,7 @@ static void remove_merge_entries(void) for (i = 0; i < active_nr; i++) { struct cache_entry *ce = active_cache[i]; if (!ce_stage(ce)) - break; + continue; printf("%s: unmerged\n", ce->name); while (remove_entry_at(i)) { if (!ce_stage(active_cache[i]))