diff options
author | Ben Straub <bs@github.com> | 2012-10-24 14:07:07 -0700 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2012-10-24 14:07:07 -0700 |
commit | 1e3b8ed5cfe784f73a123c33c90f573742d8839e (patch) | |
tree | 52514d7be3372af3588a5d9f394710782ad687ab /src/fetch.h | |
parent | 9762ad993dc1afff90a3d14751f1b1f666ad0c95 (diff) | |
download | libgit2-1e3b8ed5cfe784f73a123c33c90f573742d8839e.tar.gz |
Remove 'bytes' param from git_remote_download
Diffstat (limited to 'src/fetch.h')
-rw-r--r-- | src/fetch.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/fetch.h b/src/fetch.h index 23d0cf66f..5b8c20665 100644 --- a/src/fetch.h +++ b/src/fetch.h @@ -13,14 +13,12 @@ int git_fetch_negotiate(git_remote *remote); int git_fetch_download_pack( git_remote *remote, - git_off_t *bytes, git_transfer_progress_callback progress_cb, void *progress_payload); int git_fetch__download_pack( git_transport *t, git_repository *repo, - git_off_t *bytes, git_transfer_progress *stats, git_transfer_progress_callback progress_cb, void *progress_payload); |