Merge branch 'jk/show-index'
[gitweb.git] / builtin / prune.c
index 4cfec82f4076e357048bcb5816ceeb0f4b020192..518ffbea1397faa35102dc088a3830e40c9b13a6 100644 (file)
@@ -50,9 +50,10 @@ static int prune_object(const struct object_id *oid, const char *fullpath,
        if (st.st_mtime > expire)
                return 0;
        if (show_only || verbose) {
-               enum object_type type = sha1_object_info(oid->hash, NULL);
+               enum object_type type = oid_object_info(the_repository, oid,
+                                                       NULL);
                printf("%s %s\n", oid_to_hex(oid),
-                      (type > 0) ? typename(type) : "unknown");
+                      (type > 0) ? type_name(type) : "unknown");
        }
        if (!show_only)
                unlink_or_warn(fullpath);