From 0dccc7dceef03e4231b24c9e126110b338e1c1e1 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 28 Nov 2005 01:46:15 -0800 Subject: [PATCH] config.c: constness tightening to avoid compilation warning. Signed-off-by: Junio C Hamano --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 152fa282f0..34584f62b4 100644 --- a/config.c +++ b/config.c @@ -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) { -- 2.11.4.GIT