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:
Carlos Martín Nieto 2016-09-27 13:35:48 +02:00
parent 5e2a29a78c
commit e93b7e327a

View File

@ -489,9 +489,7 @@ static int everybody_uninteresting(git_commit_list *orig)
while (list) {
git_commit_list_node *commit = list->item;
list = list->next;
if (commit->uninteresting)
continue;
if (!commit->uninteresting)
return 0;
}