diff options
author | Edward Thomson <ethomson@microsoft.com> | 2014-08-26 16:18:46 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@microsoft.com> | 2014-10-26 22:59:38 -0400 |
commit | f152f8ac0c6c20bf5e245e79629dc70a913496b1 (patch) | |
tree | 7323cc58aa73b3e7cf5948a6608704ea92498689 /include/git2/rebase.h | |
parent | b6b636a7fad2d87067df4df47f37b57467ad6bb6 (diff) | |
download | libgit2-f152f8ac0c6c20bf5e245e79629dc70a913496b1.tar.gz |
rebase: preload all operations
Diffstat (limited to 'include/git2/rebase.h')
-rw-r--r-- | include/git2/rebase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/rebase.h b/include/git2/rebase.h index 3d3c1c78c..9ffdc4805 100644 --- a/include/git2/rebase.h +++ b/include/git2/rebase.h @@ -156,13 +156,13 @@ GIT_EXTERN(int) git_rebase_open(git_rebase **out, git_repository *repo); * working directory will be updated with the changes. If there are conflicts, * you will need to address those before committing the changes. * - * @param out The rebase operation that is to be performed next + * @param out Pointer to store the rebase operation that is to be performed next * @param repo The rebase in progress * @param checkout_opts Options to specify how the patch should be checked out * @return Zero on success; -1 on failure. */ GIT_EXTERN(int) git_rebase_next( - git_rebase_operation *operation, + git_rebase_operation **operation, git_rebase *rebase, git_checkout_options *checkout_opts); |