summaryrefslogtreecommitdiff
path: root/diff.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-05-21 22:02:51 (GMT)
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-21 22:17:16 (GMT)
commit057c7d30183672d6ef96a9f3e87860058e1c08f8 (patch)
tree026026160f4ed32ba994abbcdfaa42fa59a496a0 /diff.h
parent3258c902e7f286d770ed6fba9219973b2b5bc01d (diff)
downloadgit-057c7d30183672d6ef96a9f3e87860058e1c08f8.zip
git-057c7d30183672d6ef96a9f3e87860058e1c08f8.tar.gz
git-057c7d30183672d6ef96a9f3e87860058e1c08f8.tar.bz2
[PATCH] Constness fix for pickaxe option.
Constness fix for pickaxe option. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.h')
-rw-r--r--diff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.h b/diff.h
index 97d39ac..7473c52 100644
--- a/diff.h
+++ b/diff.h
@@ -20,7 +20,7 @@ extern void diff_unmerge(const char *path);
extern int diff_scoreopt_parse(const char *opt);
extern void diff_setup(int detect_rename, int minimum_score,
- char *pickaxe,
+ const char *pickaxe,
int reverse, int raw_output,
const char **spec, int cnt);