Commit 35108a216ebc06fb34e8dcfd5082bc9fc2e80417

nulltoken 2012-11-28T19:35:26

Fix MSVC compilation warning

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests-clar/network/fetch.c b/tests-clar/network/fetch.c
index 81a0eed..b80222f 100644
--- a/tests-clar/network/fetch.c
+++ b/tests-clar/network/fetch.c
@@ -33,7 +33,7 @@ static void progress(const git_transfer_progress *stats, void *payload)
 	*bytes_received = stats->received_bytes;
 }
 
-static void do_fetch(const char *url, int flag, int n)
+static void do_fetch(const char *url, git_remote_autotag_option_t flag, int n)
 {
 	git_remote *remote;
 	git_remote_callbacks callbacks;