commit | 057c7d30183672d6ef96a9f3e87860058e1c08f8 | [log] [tgz] |
---|---|---|
author | Junio C Hamano <junkio@cox.net> | Sat May 21 15:02:51 2005 -0700 |
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | Sat May 21 15:17:16 2005 -0700 |
tree | 026026160f4ed32ba994abbcdfaa42fa59a496a0 | |
parent | 3258c902e7f286d770ed6fba9219973b2b5bc01d [diff] [blame] |
[PATCH] Constness fix for pickaxe option. Constness fix for pickaxe option. Signed-off-by: Junio C Hamano <junkio@cox.net>
diff --git a/diff-helper.c b/diff-helper.c index 568d5ae..3c39c96 100644 --- a/diff-helper.c +++ b/diff-helper.c
@@ -9,7 +9,7 @@ static int detect_rename = 0; static int diff_score_opt = 0; static int generate_patch = 1; -static char *pickaxe = 0; +static const char *pickaxe = NULL; static int parse_oneside_change(const char *cp, int *mode, unsigned char *sha1, char *path)