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:
Junio C Hamano
2006-03-05 02:47:29 -08:00
parent 4a5d693950
commit 9201c70742
10 changed files with 44 additions and 39 deletions

View File

@ -3,7 +3,7 @@
#include <sys/wait.h>
#include "exec_cmd.h"
int run_command_v_opt(int argc, char **argv, int flags)
int run_command_v_opt(int argc, const char **argv, int flags)
{
pid_t pid = fork();
@ -47,7 +47,7 @@ int run_command_v_opt(int argc, char **argv, int flags)
}
}
int run_command_v(int argc, char **argv)
int run_command_v(int argc, const char **argv)
{
return run_command_v_opt(argc, argv, 0);
}
@ -55,7 +55,7 @@ int run_command_v(int argc, char **argv)
int run_command(const char *cmd, ...)
{
int argc;
char *argv[MAX_RUN_COMMAND_ARGS];
const char *argv[MAX_RUN_COMMAND_ARGS];
const char *arg;
va_list param;