Code

upload-pack: no longer call rev-list
[git.git] / merge-base.c
index b41f76cb72d02ba77ec04693ec1023d5707571a1..009caf804b43fdd644ff08991d55d0e417fd34d8 100644 (file)
@@ -2,11 +2,11 @@
 #include "cache.h"
 #include "commit.h"
 
-static int show_all = 0;
+static int show_all;
 
 static int merge_base(struct commit *rev1, struct commit *rev2)
 {
-       struct commit_list *result = get_merge_bases(rev1, rev2);
+       struct commit_list *result = get_merge_bases(rev1, rev2, 0);
 
        if (!result)
                return 1;