Commit daf395b7 by Edward Thomson Committed by Edward Thomson

git_reset: const the git_signature arg

parent 867a36f3
...@@ -70,7 +70,7 @@ GIT_EXTERN(int) git_reset( ...@@ -70,7 +70,7 @@ GIT_EXTERN(int) git_reset(
git_object *target, git_object *target,
git_reset_t reset_type, git_reset_t reset_type,
git_checkout_options *checkout_opts, git_checkout_options *checkout_opts,
git_signature *signature, const git_signature *signature,
const char *log_message); const char *log_message);
/** /**
......
...@@ -101,7 +101,7 @@ int git_reset( ...@@ -101,7 +101,7 @@ int git_reset(
git_object *target, git_object *target,
git_reset_t reset_type, git_reset_t reset_type,
git_checkout_options *checkout_opts, git_checkout_options *checkout_opts,
git_signature *signature, const git_signature *signature,
const char *log_message) const char *log_message)
{ {
git_object *commit = NULL; git_object *commit = NULL;
......
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