diff options
author | Vicent Marti <tanoku@gmail.com> | 2012-12-05 21:06:54 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2012-12-05 21:06:54 +0100 |
commit | a9c07c47ea6efd95f6e26639d85bbd60aa407c42 (patch) | |
tree | db938002188236df63e7ff5139fd9a7cc48e4c44 | |
parent | bf192cdb436f303c80bf7ff44307f301f981f0c6 (diff) | |
download | libgit2-a9c07c47ea6efd95f6e26639d85bbd60aa407c42.tar.gz |
tests: MSVC fix
-rw-r--r-- | tests-clar/network/fetch.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests-clar/network/fetch.c b/tests-clar/network/fetch.c index 33c229316..a5e2c02a7 100644 --- a/tests-clar/network/fetch.c +++ b/tests-clar/network/fetch.c @@ -77,11 +77,9 @@ void test_network_fetch__no_tags_http(void) static void transferProgressCallback(const git_transfer_progress *stats, void *payload) { - GIT_UNUSED(stats); bool *invoked = (bool *)payload; GIT_UNUSED(stats); - *invoked = true; } |