Merge pull request #3455 from Eun/master

Examples: network/fetch.c transfer_progress_cb - should return a value
This commit is contained in:
Carlos Martín Nieto 2015-10-07 15:43:36 +02:00
commit d8dc2b8f54

View File

@ -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 */