From 201c604c8b9bad48ce77dcf1034bc75ae39cf5dc Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sun, 15 Sep 2024 21:10:09 +0200 Subject: [PATCH] fixup! survey: add report of "largest" paths --- builtin/survey.c | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/survey.c b/builtin/survey.c index dca242b8f73db7..e870ff9cc3241b 100644 --- a/builtin/survey.c +++ b/builtin/survey.c @@ -810,6 +810,7 @@ static void initialize_report(struct survey_context *ctx) const int top_limit = 100; CALLOC_ARRAY(ctx->report.by_type, REPORT_TYPE_COUNT); + ctx->report.by_type[REPORT_TYPE_TAG].label = xstrdup(_("Tags")); ctx->report.by_type[REPORT_TYPE_COMMIT].label = xstrdup(_("Commits")); ctx->report.by_type[REPORT_TYPE_TREE].label = xstrdup(_("Trees")); ctx->report.by_type[REPORT_TYPE_BLOB].label = xstrdup(_("Blobs"));