Make fsck-cache print the object type for unreachable objects.
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 19 Apr 2005 00:35:31 +0000 (17:35 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 19 Apr 2005 00:35:31 +0000 (17:35 -0700)
This got lost when I updated to Daniel's new object model.

fsck-cache.c

index edaf9e4..952d413 100644 (file)
@@ -21,7 +21,7 @@ static void check_connectivity(void)
                struct object *obj = objs[i];
 
                if (show_unreachable && !(obj->flags & REACHABLE)) {
                struct object *obj = objs[i];
 
                if (show_unreachable && !(obj->flags & REACHABLE)) {
-                       printf("unreachable %s\n", sha1_to_hex(obj->sha1));
+                       printf("unreachable %s %s\n", obj->type, sha1_to_hex(obj->sha1));
                        continue;
                }
 
                        continue;
                }