Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsayjones.plus.com>2019-07-11 20:06:13 +0300
committerJunio C Hamano <gitster@pobox.com>2019-07-12 00:31:04 +0300
commit08a8ac88d868f3206e8faf0df2502ebc18925c33 (patch)
tree18115da218c9b0e26266809467be9ed63de249f1 /builtin/env--helper.c
parentc740039921528198efa21f9cf6ccb849e74164c4 (diff)
env--helper: mark a file-local symbol as static
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/env--helper.c')
-rw-r--r--builtin/env--helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/env--helper.c b/builtin/env--helper.c
index 1083c0f7075..23c214fff6d 100644
--- a/builtin/env--helper.c
+++ b/builtin/env--helper.c
@@ -7,7 +7,7 @@ static char const * const env__helper_usage[] = {
NULL
};
-enum {
+static enum {
ENV_HELPER_TYPE_BOOL = 1,
ENV_HELPER_TYPE_ULONG
} cmdmode = 0;