Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/attr_file.c')
-rw-r--r--src/attr_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/attr_file.c b/src/attr_file.c
index 7909c49b4..e34053fc3 100644
--- a/src/attr_file.c
+++ b/src/attr_file.c
@@ -515,8 +515,8 @@ int git_attr_assignment__parse(
/* expand macros (if given a repo with a macro cache) */
if (repo != NULL && assign->value == git_attr__true) {
- git_attr_rule *macro = git_hashtable_lookup(
- git_repository_attr_cache(repo)->macros, assign->name);
+ git_attr_rule *macro =
+ git_attr_cache__lookup_macro(repo, assign->name);
if (macro != NULL) {
unsigned int i;