mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 17:05:49 +00:00
git_reset: const the git_signature arg
This commit is contained in:
parent
867a36f3a6
commit
daf395b795
@ -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(
|
|||||||
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user