1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-26 00:06:16 +02:00

builtin-rev-parse.c: constness tightening

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-07-06 00:16:35 -07:00
parent 58ecf5c1cd
commit b7d936b2fd

View File

@ -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];