Commit e781a0c5 by Patrick Steinhardt

graph: flag fields should be declared as unsigned

parent 482d1748
...@@ -59,7 +59,7 @@ static int mark_parents(git_revwalk *walk, git_commit_list_node *one, ...@@ -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;
......
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