mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
Const tightening.
Mark Wooding noticed there was a type mismatch warning in git.c; this patch does things slightly differently (mostly tightening const) and was what I was holding onto, waiting for the setup-revisions change to be merged into the master branch. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
@@ -27,7 +27,7 @@ static int is_zero_sha1(const unsigned char *sha1)
|
||||
|
||||
static void exec_pack_objects(void)
|
||||
{
|
||||
static char *args[] = {
|
||||
static const char *args[] = {
|
||||
"pack-objects",
|
||||
"--stdout",
|
||||
NULL
|
||||
@@ -39,7 +39,7 @@ static void exec_pack_objects(void)
|
||||
static void exec_rev_list(struct ref *refs)
|
||||
{
|
||||
struct ref *ref;
|
||||
static char *args[1000];
|
||||
static const char *args[1000];
|
||||
int i = 0, j;
|
||||
|
||||
args[i++] = "rev-list"; /* 0 */
|
||||
|
||||
Reference in New Issue
Block a user