From 128e94bbbb1f1af539be7fb2844e261bfdb28fed Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 21 Oct 2015 12:04:53 +0200 Subject: [PATCH] index: Remove unneeded consts --- src/index.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.c b/src/index.c index c0be5b90d..334a13135 100644 --- a/src/index.c +++ b/src/index.c @@ -1193,13 +1193,13 @@ static int index_no_dups(void **old, void *new) } static void index_existing_and_best( - const git_index_entry **existing, + git_index_entry **existing, size_t *existing_position, - const git_index_entry **best, + git_index_entry **best, git_index *index, const git_index_entry *entry) { - const git_index_entry *e; + git_index_entry *e; size_t pos; int error;