Commit 58ffeb9c by Russell Belfer

Fix notes to use new fixed iterator signature

parent 41a82592
...@@ -523,7 +523,7 @@ int git_note_foreach( ...@@ -523,7 +523,7 @@ int git_note_foreach(
if (git_tree_lookup(&tree, repo, &tree_oid) < 0) if (git_tree_lookup(&tree, repo, &tree_oid) < 0)
goto cleanup; goto cleanup;
if (git_iterator_for_tree(repo, tree, &iter) < 0) if (git_iterator_for_tree(&iter, repo, tree) < 0)
goto cleanup; goto cleanup;
if (git_iterator_current(iter, &item) < 0) if (git_iterator_current(iter, &item) < 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment