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/commit-graph.c | |
parent | dd45c2e48f79020891bd2375de245ba215ce3826 (diff) | |
parent | 86eef3541e96c398db900ff3e77258bfae9d99e3 (diff) |
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/commit-graph.c')
-rw-r--r-- | builtin/commit-graph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/commit-graph.c b/builtin/commit-graph.c index be06d0a811..a783a86e79 100644 --- a/builtin/commit-graph.c +++ b/builtin/commit-graph.c @@ -22,12 +22,12 @@ " [--changed-paths] [--[no-]max-new-filters <n>] [--[no-]progress]\n" \ " <split-options>") -static const char * builtin_commit_graph_verify_usage[] = { +static const char * const builtin_commit_graph_verify_usage[] = { BUILTIN_COMMIT_GRAPH_VERIFY_USAGE, NULL }; -static const char * builtin_commit_graph_write_usage[] = { +static const char * const builtin_commit_graph_write_usage[] = { BUILTIN_COMMIT_GRAPH_WRITE_USAGE, NULL }; |