From 48e60ae75e78bc58aeb3c7ecf6be4653152182f4 Mon Sep 17 00:00:00 2001 From: Jacques Germishuys Date: Mon, 21 Apr 2014 11:23:29 +0200 Subject: Don't redefine the same callback types, their signatures may change --- examples/network/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/network/fetch.c') diff --git a/examples/network/fetch.c b/examples/network/fetch.c index fdd82a1f7..03f1541a4 100644 --- a/examples/network/fetch.c +++ b/examples/network/fetch.c @@ -97,7 +97,7 @@ int fetch(git_repository *repo, int argc, char **argv) // Set up the callbacks (only update_tips for now) callbacks.update_tips = &update_cb; - callbacks.progress = &progress_cb; + callbacks.sideband_progress = &progress_cb; callbacks.credentials = cred_acquire_cb; git_remote_set_callbacks(remote, &callbacks); -- cgit v1.2.1