From 3e885f02775dad0d907d447bc3c24fa07870b41f Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Mon, 8 Feb 2021 23:28:53 -0800 Subject: 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 Signed-off-by: Junio C Hamano diff --git a/builtin/stash.c b/builtin/stash.c index 9bc85f9..6f2b58f 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; /* -- cgit v0.10.2-6-g49f6