Commit 013ecb4f by Patrick Steinhardt

revwalk: do not re-declare `commit` variable

parent 8468a440
...@@ -290,7 +290,7 @@ static void mark_parents_uninteresting(git_commit_list_node *commit) ...@@ -290,7 +290,7 @@ static void mark_parents_uninteresting(git_commit_list_node *commit)
while (parents) { while (parents) {
git_commit_list_node *commit = git_commit_list_pop(&parents); commit = git_commit_list_pop(&parents);
while (commit) { while (commit) {
if (commit->uninteresting) if (commit->uninteresting)
......
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