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/show-branch.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/show-branch.c')
| -rw-r--r-- | builtin/show-branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/show-branch.c b/builtin/show-branch.c index b549d8c3f5..525b231d87 100644 --- a/builtin/show-branch.c +++ b/builtin/show-branch.c @@ -19,7 +19,7 @@ #include "date.h" #include "wildmatch.h" -static const char* show_branch_usage[] = { +static const char*const show_branch_usage[] = { N_("git show-branch [-a | --all] [-r | --remotes] [--topo-order | --date-order]\n" " [--current] [--color[=<when>] | --no-color] [--sparse]\n" " [--more=<n> | --list | --independent | --merge-base]\n" |
