diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2008-02-16 06:01:11 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-15 21:24:53 -0800 |
commit | 872da32d80c004c26a19a5d6cb31eb3e7f034094 (patch) | |
tree | 699c17fe50239d06caca0dbf2a43b6ee7b544c94 /cache.h | |
parent | ea5105a5e3c6629ee64b499ea918c2b80882fc22 (diff) | |
download | git-872da32d80c004c26a19a5d6cb31eb3e7f034094.tar.gz |
Add "const" qualifier to "char *pager_program".
Also use "git_config_string" to simplify "config.c" code
where "pager_program" 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
@@ -610,7 +610,7 @@ extern int write_or_whine_pipe(int fd, const void *buf, size_t count, const char /* pager.c */ extern void setup_pager(void); -extern char *pager_program; +extern const char *pager_program; extern int pager_in_use(void); extern int pager_use_color; |