aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/fast-export.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-04-29 14:21:28 -0700
committerJunio C Hamano <gitster@pobox.com>2025-04-29 14:21:28 -0700
commit5a6de390d8a844bb9c6e192cd79ed6a33c1f5d14 (patch)
tree2dff2c6681a6f23514e7293de48bff670916eaeb /builtin/fast-export.c
parentdd45c2e48f79020891bd2375de245ba215ce3826 (diff)
parent86eef3541e96c398db900ff3e77258bfae9d99e3 (diff)
downloadgit-5a6de390d8a844bb9c6e192cd79ed6a33c1f5d14.tar.gz
Merge branch 'az/tighten-string-array-constness'
Code clean-up. * az/tighten-string-array-constness: global: mark usage strings and string tables const
Diffstat (limited to 'builtin/fast-export.c')
-rw-r--r--builtin/fast-export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/fast-export.c b/builtin/fast-export.c
index afacd228b5..37c01d6c6f 100644
--- a/builtin/fast-export.c
+++ b/builtin/fast-export.c
@@ -30,7 +30,7 @@
#include "remote.h"
#include "blob.h"
-static const char *fast_export_usage[] = {
+static const char *const fast_export_usage[] = {
N_("git fast-export [<rev-list-opts>]"),
NULL
};