]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/helper/test-match-trees.c
object-name.h: move declarations for object-name.c functions from cache.h
[thirdparty/git.git] / t / helper / test-match-trees.c
index 4079fdee06776c8179fbc15283141f3890ff013e..3808e1ac38b97d81b2c34ec841df3fc3237bbb20 100644 (file)
@@ -1,5 +1,8 @@
 #include "test-tool.h"
 #include "cache.h"
+#include "hex.h"
+#include "object-name.h"
+#include "setup.h"
 #include "tree.h"
 
 int cmd__match_trees(int ac, const char **av)
@@ -9,9 +12,9 @@ int cmd__match_trees(int ac, const char **av)
 
        setup_git_directory();
 
-       if (get_oid(av[1], &hash1))
+       if (repo_get_oid(the_repository, av[1], &hash1))
                die("cannot parse %s as an object name", av[1]);
-       if (get_oid(av[2], &hash2))
+       if (repo_get_oid(the_repository, av[2], &hash2))
                die("cannot parse %s as an object name", av[2]);
        one = parse_tree_indirect(&hash1);
        if (!one)