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 /cache.h | |
parent | Add "const" qualifier to "char *editor_program". (diff) | |
download | tgif-dfb068be8deef2065970b2a7889acc51abf4dd78.tar.xz |
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 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -615,7 +615,7 @@ extern int pager_in_use(void); extern int pager_use_color; extern const char *editor_program; -extern char *excludes_file; +extern const char *excludes_file; /* base85 */ int decode_85(char *dst, const char *line, int linelen); |