aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-05-21 15:02:51 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-21 15:17:16 -0700
commit057c7d30183672d6ef96a9f3e87860058e1c08f8 (patch)
tree026026160f4ed32ba994abbcdfaa42fa59a496a0
parent3258c902e7f286d770ed6fba9219973b2b5bc01d (diff)
downloadgit-057c7d30183672d6ef96a9f3e87860058e1c08f8.tar.gz
git-057c7d30183672d6ef96a9f3e87860058e1c08f8.tar.xz
[PATCH] Constness fix for pickaxe option.
Constness fix for pickaxe option. Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--diff-cache.c2
-rw-r--r--diff-files.c2
-rw-r--r--diff-helper.c2
-rw-r--r--diff-tree.c2
-rw-r--r--diff.c2
-rw-r--r--diff.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/diff-cache.c b/diff-cache.c
index b47b45a40..c60435940 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)
diff --git a/diff-files.c b/diff-files.c
index a3c523ff6..6dca9e0e2 100644
--- a/diff-files.c
+++ b/diff-files.c
@@ -14,7 +14,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;
static int silent = 0;
static int matches_pathspec(struct cache_entry *ce, char **spec, int cnt)
diff --git a/diff-helper.c b/diff-helper.c
index 568d5ae35..3c39c96d7 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)
diff --git a/diff-tree.c b/diff-tree.c
index 868404f7c..73aa1496e 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 = "";
diff --git a/diff.c b/diff.c
index 13d5e3edf..f7d4bc4b5 100644
--- a/diff.c
+++ b/diff.c
@@ -513,7 +513,7 @@ int diff_scoreopt_parse(const char *opt)
}
void diff_setup(int detect_rename_, int minimum_score_,
- char *pickaxe_,
+ const char *pickaxe_,
int reverse_diff_, int diff_raw_output_,
const char **pathspec_, int speccnt_)
{
diff --git a/diff.h b/diff.h
index 97d39ac96..7473c5228 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);