sha1-file: convert freshen functions to object_id
[gitweb.git] / t / helper / test-ref-store.c
index d846c88ed26fb985af3cb6c9c03ec978069063a4..7c4f43746e8792a368814664a70c51ca55ab43e1 100644 (file)
@@ -1,6 +1,8 @@
+#include "test-tool.h"
 #include "cache.h"
 #include "refs.h"
 #include "worktree.h"
+#include "object-store.h"
 
 static const char *notnull(const char *arg, const char *name)
 {
@@ -135,7 +137,7 @@ static int cmd_resolve_ref(struct ref_store *refs, const char **argv)
 
        ref = refs_resolve_ref_unsafe(refs, refname, resolve_flags,
                                      &oid, &flags);
-       printf("%s %s 0x%x\n", oid_to_hex(&oid), ref, flags);
+       printf("%s %s 0x%x\n", oid_to_hex(&oid), ref ? ref : "(null)", flags);
        return ref ? 0 : 1;
 }
 
@@ -274,7 +276,7 @@ static struct command commands[] = {
        { NULL, NULL }
 };
 
-int cmd_main(int argc, const char **argv)
+int cmd__ref_store(int argc, const char **argv)
 {
        struct ref_store *refs;
        const char *func;