diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-28 01:46:15 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-28 01:46:15 -0800 |
commit | 0dccc7dceef03e4231b24c9e126110b338e1c1e1 (patch) | |
tree | 38a016a5339989cfb8407abb686a32d2c8fc0281 /config.c | |
parent | 9f63892b3803701c97259d51143e199fe9603d3f (diff) | |
download | git-0dccc7dceef03e4231b24c9e126110b338e1c1e1.tar.gz |
config.c: constness tightening to avoid compilation warning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |