1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-06 14:36:18 +02:00

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>
This commit is contained in:
Denton Liu 2021-02-08 23:28:53 -08:00 committed by Junio C Hamano
parent 8c2462d1fe
commit 3e885f0277

View File

@ -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;
/*