Commit d8dc2b8f by Carlos Martín Nieto

Merge pull request #3455 from Eun/master

Examples: network/fetch.c transfer_progress_cb - should return a value
parents ac69a823 8b8f1f91
...@@ -63,6 +63,7 @@ static int transfer_progress_cb(const git_transfer_progress *stats, void *payloa ...@@ -63,6 +63,7 @@ static int transfer_progress_cb(const git_transfer_progress *stats, void *payloa
stats->received_objects, stats->total_objects, stats->received_objects, stats->total_objects,
stats->indexed_objects, stats->received_bytes); stats->indexed_objects, stats->received_bytes);
} }
return 0;
} }
/** Entry point for this command */ /** Entry point for this command */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment