From 807566d55403ee03a9870ca0102541bfd714b4d4 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Latour Date: Fri, 3 Apr 2015 18:59:11 -0700 Subject: [PATCH] Entry argument passed to git_index_add_frombuffer() should be const --- include/git2/index.h | 2 +- src/index.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/git2/index.h b/include/git2/index.h index 1feeb6fb1..92636adeb 100644 --- a/include/git2/index.h +++ b/include/git2/index.h @@ -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); /** diff --git a/src/index.c b/src/index.c index 9880e8fe4..dbcc37a58 100644 --- a/src/index.c +++ b/src/index.c @@ -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;