mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 22:55:47 +00:00
fix coding style: while( -> while (
This commit is contained in:
parent
0d9e0323a5
commit
c6d03c958f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user