diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-22 00:02:51 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-22 00:17:16 +0200 |
commit | 057c7d30183672d6ef96a9f3e87860058e1c08f8 (patch) | |
tree | 026026160f4ed32ba994abbcdfaa42fa59a496a0 /diff-cache.c | |
parent | diff-tree: prettify output slightly (diff) | |
download | git-057c7d30183672d6ef96a9f3e87860058e1c08f8.tar.xz git-057c7d30183672d6ef96a9f3e87860058e1c08f8.zip |
[PATCH] Constness fix for pickaxe option.
Constness fix for pickaxe option.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff-cache.c')
-rw-r--r-- | diff-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-cache.c b/diff-cache.c index b47b45a40d..c604359401 100644 --- a/diff-cache.c +++ b/diff-cache.c @@ -8,7 +8,7 @@ static int line_termination = '\n'; static int detect_rename = 0; static int reverse_diff = 0; static int diff_score_opt = 0; -static char *pickaxe = 0; +static const char *pickaxe = NULL; /* A file entry went away or appeared */ static void show_file(const char *prefix, struct cache_entry *ce, unsigned char *sha1, unsigned int mode) |