diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-05 02:47:29 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-05 02:47:29 -0800 |
commit | 9201c707426b3dc0c894775416f576c25c008d46 (patch) | |
tree | 235727178999b09a9d26ff4c384199558761fe15 /upload-pack.c | |
parent | 4a5d6939509f9aeef600ea17643caef4c898b12f (diff) | |
download | git-9201c707426b3dc0c894775416f576c25c008d46.tar.gz git-9201c707426b3dc0c894775416f576c25c008d46.tar.xz |
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>
Diffstat (limited to 'upload-pack.c')
-rw-r--r-- | upload-pack.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/upload-pack.c b/upload-pack.c index 635abb371..47560c952 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -46,7 +46,7 @@ static void create_pack_file(void) if (!pid) { int i; int args; - char **argv; + const char **argv; char *buf; char **p; @@ -56,9 +56,9 @@ static void create_pack_file(void) } else args = nr_has + nr_needs + 5; - argv = xmalloc(args * sizeof(char *)); + p = xmalloc(args * sizeof(char *)); + argv = (const char **) p; buf = xmalloc(args * 45); - p = argv; dup2(fd[1], 1); close(0); |