One define was unused, the other occurs just once. Easy patch. Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> --- builtin/mv.c | 2 +- cache.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/builtin/mv.c b/builtin/mv.c index 40e40bb098..1a3c61994c 100644 --- a/builtin/mv.c +++ b/builtin/mv.c @@ -287,7 +287,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix) pos = index_name_pos(&the_index, src, strlen(src)); assert(pos >= 0); if (!show_only) - rename_cache_entry_at(pos, dst); + rename_index_entry_at(&the_index, pos, dst); } if (gitmodules_modified) diff --git a/cache.h b/cache.h index 54c1bbf0d1..4c12ff265e 100644 --- a/cache.h +++ b/cache.h @@ -354,8 +354,6 @@ extern void free_name_hash(struct index_state *istate); #ifndef NO_THE_INDEX_COMPATIBILITY_MACROS -#define rename_cache_entry_at(pos, new_name) rename_index_entry_at(&the_index, (pos), (new_name)) -#define remove_cache_entry_at(pos) remove_index_entry_at(&the_index, (pos)) #define remove_file_from_cache(path) remove_file_from_index(&the_index, (path)) #define add_to_cache(path, st, flags) add_to_index(&the_index, (path), (st), (flags)) #define add_file_to_cache(path, flags) add_file_to_index(&the_index, (path), (flags)) -- 2.13.0.rc1.39.ga6db8bfa24