diff options
author | Serge E. Hallyn <serue@us.ibm.com> | 2006-04-17 10:14:48 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-17 15:06:40 -0700 |
commit | bb996614de4fddfa73286479f3c6a901107a2629 (patch) | |
tree | c1135fd6c0863e41df03d200773b9123c429c4eb /exec_cmd.c | |
parent | dafc88b136b508c1c08129b756b6ba23b7c9d341 (diff) | |
download | git-bb996614de4fddfa73286479f3c6a901107a2629.tar.gz |
cleanups: remove unused variable from exec_cmd.c
Not sure whether it should be removed, or whether
execv_git_cmd() should return it rather than -1 at bottom.
Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'exec_cmd.c')
-rw-r--r-- | exec_cmd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/exec_cmd.c b/exec_cmd.c index 590e738969..44bb2f23de 100644 --- a/exec_cmd.c +++ b/exec_cmd.c @@ -32,7 +32,7 @@ const char *git_exec_path(void) int execv_git_cmd(const char **argv) { char git_command[PATH_MAX + 1]; - int len, err, i; + int len, i; const char *paths[] = { current_exec_path, getenv("GIT_EXEC_PATH"), builtin_exec_path }; @@ -85,8 +85,6 @@ int execv_git_cmd(const char **argv) /* execve() can only ever return if it fails */ execve(git_command, (char **)argv, environ); - err = errno; - argv[0] = tmp; } return -1; |