mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 04:34:15 +00:00
Entry argument passed to git_index_add_frombuffer() should be const
This commit is contained in:
parent
de355f2341
commit
807566d554
@ -485,7 +485,7 @@ GIT_EXTERN(int) git_index_add_bypath(git_index *index, const char *path);
|
||||
*/
|
||||
GIT_EXTERN(int) git_index_add_frombuffer(
|
||||
git_index *index,
|
||||
git_index_entry *entry,
|
||||
const git_index_entry *entry,
|
||||
const void *buffer, size_t len);
|
||||
|
||||
/**
|
||||
|
@ -1091,7 +1091,7 @@ static bool valid_filemode(const int filemode)
|
||||
}
|
||||
|
||||
int git_index_add_frombuffer(
|
||||
git_index *index, git_index_entry *source_entry,
|
||||
git_index *index, const git_index_entry *source_entry,
|
||||
const void *buffer, size_t len)
|
||||
{
|
||||
git_index_entry *entry = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user