diff options
author | nulltoken <emeric.fermas@gmail.com> | 2012-04-14 13:46:13 +0200 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2012-04-14 13:46:13 +0200 |
commit | fdd1149c292727439c6616743ad044df3c74527c (patch) | |
tree | 8c0aac7a84ef6e4954700f0c804db1957e18a7c2 | |
parent | e77e53edb37b7dd603da7758b243ef8e91d9e394 (diff) | |
download | libgit2-fdd1149c292727439c6616743ad044df3c74527c.tar.gz |
Fix MSVC compilation warnings
Removed unreferenced variables.
-rw-r--r-- | tests-clar/repo/open.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests-clar/repo/open.c b/tests-clar/repo/open.c index 28bae40fa..2fbcbf50d 100644 --- a/tests-clar/repo/open.c +++ b/tests-clar/repo/open.c @@ -232,7 +232,6 @@ void test_repo_open__win32_path(void) #ifdef GIT_WIN32 git_repository *repo = cl_git_sandbox_init("empty_standard_repo"), *repo2; git_buf winpath = GIT_BUF_INIT; - char *src, *tgt; static const char *repo_path = "empty_standard_repo/.git/"; static const char *repo_wd = "empty_standard_repo/"; |