mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-07 17:27:40 +00:00
revwalk: style change
Change the condition for returning 0 more in line with that we write elsewhere in the library.
This commit is contained in:
parent
5e2a29a78c
commit
e93b7e327a
@ -489,10 +489,8 @@ static int everybody_uninteresting(git_commit_list *orig)
|
|||||||
while (list) {
|
while (list) {
|
||||||
git_commit_list_node *commit = list->item;
|
git_commit_list_node *commit = list->item;
|
||||||
list = list->next;
|
list = list->next;
|
||||||
if (commit->uninteresting)
|
if (!commit->uninteresting)
|
||||||
continue;
|
return 0;
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user