diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2008-02-16 06:01:59 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-15 21:24:54 -0800 |
commit | dfb068be8deef2065970b2a7889acc51abf4dd78 (patch) | |
tree | a536c9b37269b1a969504181ef12eb9405eac92a /environment.c | |
parent | ee9601e6bef2281e3183e127e1e4e36ed257af7a (diff) | |
download | git-dfb068be8deef2065970b2a7889acc51abf4dd78.tar.gz |
Add "const" qualifier to "char *excludes_file".
Also use "git_config_string" to simplify "config.c" code
where "excludes_file" is set.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'environment.c')
-rw-r--r-- | environment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.c b/environment.c index 9556009324..fa3633372b 100644 --- a/environment.c +++ b/environment.c @@ -33,7 +33,7 @@ size_t delta_base_cache_limit = 16 * 1024 * 1024; const char *pager_program; int pager_use_color = 1; const char *editor_program; -char *excludes_file; +const char *excludes_file; int auto_crlf = 0; /* 1: both ways, -1: only when adding git objects */ unsigned whitespace_rule_cfg = WS_DEFAULT_RULE; |