Commit a9c07c47ea6efd95f6e26639d85bbd60aa407c42

Vicent Marti 2012-12-05T21:06:54

tests: MSVC fix

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/tests-clar/network/fetch.c b/tests-clar/network/fetch.c
index 33c2293..a5e2c02 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;
 }