diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-03-26 20:13:17 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-26 20:13:17 -0700 |
commit | 8194fcaa1f0999064a170ed24d36be5432815dce (patch) | |
tree | 99c52b1bbaa3eee26bb8e21b77cb0ea477cd4dec /test-subprocess.c | |
parent | 908535c1fa1c5cddddfa74732c66d625e99bd6b0 (diff) | |
parent | c0aa335c95974caebcc972cd63a11e6ff73b1612 (diff) | |
download | git-8194fcaa1f0999064a170ed24d36be5432815dce.tar.gz |
Merge branch 'js/remove-unused-variables'
* js/remove-unused-variables:
Remove unused variables
Diffstat (limited to 'test-subprocess.c')
-rw-r--r-- | test-subprocess.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test-subprocess.c b/test-subprocess.c index 667d3e5079..8926bc52a9 100644 --- a/test-subprocess.c +++ b/test-subprocess.c @@ -3,11 +3,10 @@ int main(int argc, char **argv) { - const char *prefix; struct child_process cp; int nogit = 0; - prefix = setup_git_directory_gently(&nogit); + setup_git_directory_gently(&nogit); if (nogit) die("No git repo found"); if (!strcmp(argv[1], "--setup-work-tree")) { |