Commit 8b8f1f91881a024d0d8efbf1f69e49ed65fdbc6f

Eun 2015-10-07T14:01:05

fix return

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/examples/network/fetch.c b/examples/network/fetch.c
index bc7a5a0..177359b 100644
--- a/examples/network/fetch.c
+++ b/examples/network/fetch.c
@@ -63,6 +63,7 @@ static int transfer_progress_cb(const git_transfer_progress *stats, void *payloa
 		       stats->received_objects, stats->total_objects,
 		       stats->indexed_objects, stats->received_bytes);
 	}
+	return 0;
 }
 
 /** Entry point for this command */