Commit 21d4a378 by Remy Suen Committed by GitHub

Flag given_opts in git_revert as optional

The given_opts argument can actually be NULL and thus should be
flagged accordingly in the header file.
parent 104a1b0b
...@@ -75,7 +75,7 @@ GIT_EXTERN(int) git_revert_commit( ...@@ -75,7 +75,7 @@ GIT_EXTERN(int) git_revert_commit(
* *
* @param repo the repository to revert * @param repo the repository to revert
* @param commit the commit to revert * @param commit the commit to revert
* @param given_opts merge flags * @param given_opts the revert options (or null for defaults)
* @return zero on success, -1 on failure. * @return zero on success, -1 on failure.
*/ */
GIT_EXTERN(int) git_revert( GIT_EXTERN(int) git_revert(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment