1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-07 20:06:10 +02:00

config.c: constness tightening to avoid compilation warning.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2005-11-28 01:46:15 -08:00
parent 9f63892b38
commit 0dccc7dcee

View File

@ -11,7 +11,7 @@
#define MAXNAME (256)
static FILE *config_file;
static char *config_file_name;
static const char *config_file_name;
static int config_linenr;
static int get_next_char(void)
{