Skip to content

Commit

Permalink
Address build error from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
YuKitsune committed Jan 25, 2023
1 parent ef4cc44 commit 4224906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libgit2/iterator.c
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ static void tree_iterator_set_current(
iter->entry.mode = tree_entry->attr;
iter->entry.path = iter->entry_path.ptr;
iter->current_sparse_status = GIT_SPARSE_UNCHECKED;
git_oid_cpy(&iter->entry.id, tree_entry->oid);
git_oid_cpy(&iter->entry.id, &tree_entry->oid);
}

static int tree_iterator_advance(const git_index_entry **out, git_iterator *i)
Expand Down

0 comments on commit 4224906

Please sign in to comment.