summaryrefslogtreecommitdiff
path: root/include/git2/rebase.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/rebase.h')
-rw-r--r--include/git2/rebase.h4
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);