1
0
mirror of https://github.com/git/git.git synced 2024-09-24 03:11:22 +02:00

builtin-describe.c: make a global variable "pattern" static

This variable is not used by any other file.

Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Nanako Shiraishi 2008-07-16 19:42:14 +09:00 committed by Junio C Hamano
parent 7ba04d9f37
commit cb2a1cc298

View File

@ -20,7 +20,7 @@ static int tags; /* But allow any tags if --tags is specified */
static int longformat;
static int abbrev = DEFAULT_ABBREV;
static int max_candidates = 10;
const char *pattern = NULL;
static const char *pattern;
static int always;
struct commit_name {