diff options
| author | Denton Liu <liu.denton@gmail.com> | 2021-02-08 23:28:53 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-02-11 13:34:58 -0800 |
| commit | 3e885f02775dad0d907d447bc3c24fa07870b41f (patch) | |
| tree | eceacf4287681af7c9b43267374e408be92d1cc4 | |
| parent | 8c2462d1fe01fbc509827591f6b287d8af245ae1 (diff) | |
| download | git-3e885f02775dad0d907d447bc3c24fa07870b41f.tar.gz | |
stash: declare ref_stash as an array
Save sizeof(const char *) bytes by declaring ref_stash as an array
instead of having a redundant pointer to an array.
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | builtin/stash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stash.c b/builtin/stash.c index 9bc85f91cd..6f2b58f6ab 100644 --- a/builtin/stash.c +++ b/builtin/stash.c @@ -87,7 +87,7 @@ static const char * const git_stash_save_usage[] = { NULL }; -static const char *ref_stash = "refs/stash"; +static const char ref_stash[] = "refs/stash"; static struct strbuf stash_index_path = STRBUF_INIT; /* |
