Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-12-19 02:15:17 +0300
committerJunio C Hamano <gitster@pobox.com>2020-12-19 02:15:18 +0300
commit3517022568b0cbf2ada289e43c8c562b61132082 (patch)
treed71a3432d07de7634b22a965adf0a22a1295641d /builtin
parente0f58c9b3e5372f62ff97f66dc240da5b503e2b1 (diff)
parent56f56ac50b932310c629832fad256e624ca451e3 (diff)
Merge branch 'ab/unreachable-break'
Code clean-up. * ab/unreachable-break: style: do not "break" in switch() after "return"
Diffstat (limited to 'builtin')
-rw-r--r--builtin/fast-export.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/fast-export.c b/builtin/fast-export.c
index d2e33f5005..0a60356b06 100644
--- a/builtin/fast-export.c
+++ b/builtin/fast-export.c
@@ -923,7 +923,6 @@ static struct commit *get_commit(struct rev_cmdline_entry *e, char *full_name)
if (!tag)
die("Tag %s points nowhere?", e->name);
return (struct commit *)tag;
- break;
}
default:
return NULL;