Merge branch 'da/mergetool-diff-order'
[gitweb.git] / t / helper / test-dump-split-index.c
index 861d28c9b6c1b4d95f74ffbd95bc279ea0d377eb..e44430b699db732252afa6fcb06686ec89b5811d 100644 (file)
@@ -7,7 +7,7 @@ static void show_bit(size_t pos, void *data)
        printf(" %d", (int)pos);
 }
 
-int main(int ac, char **av)
+int cmd_main(int ac, const char **av)
 {
        struct split_index *si;
        int i;
@@ -23,7 +23,7 @@ int main(int ac, char **av)
        for (i = 0; i < the_index.cache_nr; i++) {
                struct cache_entry *ce = the_index.cache[i];
                printf("%06o %s %d\t%s\n", ce->ce_mode,
-                      sha1_to_hex(ce->sha1), ce_stage(ce), ce->name);
+                      oid_to_hex(&ce->oid), ce_stage(ce), ce->name);
        }
        printf("replacements:");
        if (si->replace_bitmap)