Commit c6d03c958fc5604c8a00c9a512ec342caa3e43ef

Scott J. Goldman 2012-11-28T18:07:08

fix coding style: while( -> while (

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/merge.c b/src/merge.c
index e0fc0ab..96d2168 100644
--- a/src/merge.c
+++ b/src/merge.c
@@ -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;