graph: flag fields should be declared as unsigned

This commit is contained in:
Patrick Steinhardt 2016-11-25 15:02:07 +01:00
parent 482d17484e
commit e781a0c52f

View File

@ -59,7 +59,7 @@ static int mark_parents(git_revwalk *walk, git_commit_list_node *one,
/* as long as there are non-STALE commits */ /* as long as there are non-STALE commits */
while (interesting(&list, roots)) { while (interesting(&list, roots)) {
git_commit_list_node *commit = git_pqueue_pop(&list); git_commit_list_node *commit = git_pqueue_pop(&list);
int flags; unsigned int flags;
if (commit == NULL) if (commit == NULL)
break; break;