Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-05-22 02:02:51 +0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-22 02:17:16 +0400
commit057c7d30183672d6ef96a9f3e87860058e1c08f8 (patch)
tree026026160f4ed32ba994abbcdfaa42fa59a496a0 /diff-tree.c
parent3258c902e7f286d770ed6fba9219973b2b5bc01d (diff)
[PATCH] Constness fix for pickaxe option.
Constness fix for pickaxe option. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff-tree.c')
-rw-r--r--diff-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-tree.c b/diff-tree.c
index 868404f7c4..73aa1496e8 100644
--- a/diff-tree.c
+++ b/diff-tree.c
@@ -13,7 +13,7 @@ static int generate_patch = 0;
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;
static const char *header = NULL;
static const char *header_prefix = "";