From 057c7d30183672d6ef96a9f3e87860058e1c08f8 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 21 May 2005 15:02:51 -0700 Subject: [PATCH] Constness fix for pickaxe option. Constness fix for pickaxe option. Signed-off-by: Junio C Hamano --- diff-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'diff-tree.c') 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 = ""; -- cgit v1.2.1