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/mktree.c | |
| parent | Merge branch 'as/typofix-in-env-h-header' (diff) | |
| parent | global: mark usage strings and string tables const (diff) | |
| download | git-5a6de390d8a844bb9c6e192cd79ed6a33c1f5d14.tar.gz git-5a6de390d8a844bb9c6e192cd79ed6a33c1f5d14.zip | |
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/mktree.c')
| -rw-r--r-- | builtin/mktree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/mktree.c b/builtin/mktree.c index 7ffe6eefd8..4b47803467 100644 --- a/builtin/mktree.c +++ b/builtin/mktree.c @@ -67,7 +67,7 @@ static void write_tree(struct object_id *oid) strbuf_release(&buf); } -static const char *mktree_usage[] = { +static const char *const mktree_usage[] = { "git mktree [-z] [--missing] [--batch]", NULL }; |
