diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-06 09:16:35 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-07 02:18:30 +0200 |
commit | b7d936b2fd917bef7acf0edb086de5902449b780 (patch) | |
tree | 2cc3ee4db8bc17acf34837b1bf8de96a4a3139cc /builtin-rev-parse.c | |
parent | Re-fix clear_commit_marks(). (diff) | |
download | git-b7d936b2fd917bef7acf0edb086de5902449b780.tar.xz git-b7d936b2fd917bef7acf0edb086de5902449b780.zip |
builtin-rev-parse.c: constness tightening
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-rev-parse.c')
-rw-r--r-- | builtin-rev-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-rev-parse.c b/builtin-rev-parse.c index 4377d357c4..b3e4386c1b 100644 --- a/builtin-rev-parse.c +++ b/builtin-rev-parse.c @@ -164,7 +164,7 @@ static int show_file(const char *arg) return 0; } -static int try_difference(char *arg) +static int try_difference(const char *arg) { char *dotdot; unsigned char sha1[20]; |