Commit c6d03c95 by Scott J. Goldman

fix coding style: while( -> while (

parent 0d9e0323
......@@ -258,7 +258,7 @@ static int count_ahead_behind(git_commit_list_node *one, git_commit_list_node *t
if (git_pqueue_insert(&pq, two) < 0)
return -1;
while((commit = git_pqueue_pop(&pq)) != NULL) {
while ((commit = git_pqueue_pop(&pq)) != NULL) {
if (commit->flags & RESULT ||
(commit->flags & (PARENT1 | PARENT2)) == (PARENT1 | PARENT2))
continue;
......
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