diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-04-29 14:21:28 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-04-29 14:21:28 -0700 |
| commit | 5a6de390d8a844bb9c6e192cd79ed6a33c1f5d14 (patch) | |
| tree | 2dff2c6681a6f23514e7293de48bff670916eaeb /builtin/fast-export.c | |
| parent | dd45c2e48f79020891bd2375de245ba215ce3826 (diff) | |
| parent | 86eef3541e96c398db900ff3e77258bfae9d99e3 (diff) | |
| download | git-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.c | 2 |
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 }; |
