Skip to content

Commit 4224906

Browse files
committed
Address build error from rebase
1 parent ef4cc44 commit 4224906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libgit2/iterator.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ static void tree_iterator_set_current(
764764
iter->entry.mode = tree_entry->attr;
765765
iter->entry.path = iter->entry_path.ptr;
766766
iter->current_sparse_status = GIT_SPARSE_UNCHECKED;
767-
git_oid_cpy(&iter->entry.id, tree_entry->oid);
767+
git_oid_cpy(&iter->entry.id, &tree_entry->oid);
768768
}
769769

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

0 commit comments

Comments
 (0)