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 /include/git2/remote.h | |
parent | 9762ad993dc1afff90a3d14751f1b1f666ad0c95 (diff) | |
download | libgit2-1e3b8ed5cfe784f73a123c33c90f573742d8839e.tar.gz |
Remove 'bytes' param from git_remote_download
Diffstat (limited to 'include/git2/remote.h')
-rw-r--r-- | include/git2/remote.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h index 897dfde8f..1ec1a0840 100644 --- a/include/git2/remote.h +++ b/include/git2/remote.h @@ -183,8 +183,6 @@ GIT_EXTERN(int) git_remote_ls(git_remote *remote, git_headlist_cb list_cb, void * filename will be NULL and the function will return success. * * @param remote the remote to download from - * @param bytes buffer that receives the number of bytes transferred (updated - * while transfer is in progress) * @param progress_cb function to call with progress information. Be aware that * this is called inline with network and indexing operations, so performance * may be affected. @@ -193,7 +191,6 @@ GIT_EXTERN(int) git_remote_ls(git_remote *remote, git_headlist_cb list_cb, void */ GIT_EXTERN(int) git_remote_download( git_remote *remote, - git_off_t *bytes, git_transfer_progress_callback progress_cb, void *progress_payload); |