Simplify show-diff cache entry name handling.
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 16 Apr 2005 04:42:34 +0000 (21:42 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 16 Apr 2005 04:42:34 +0000 (21:42 -0700)
The cache-entry names are all proper strings, no need to worry about
their length.

show-diff.c

index 15dcd05..6f343c5 100644 (file)
@@ -97,7 +97,7 @@ int main(int argc, char **argv)
                changed = cache_match_stat(ce, &st);
                if (!changed)
                        continue;
-               printf("%.*s:  ", ce_namelen(ce), ce->name);
+               printf("%s:  ", ce->name);
                for (n = 0; n < 20; n++)
                        printf("%02x", ce->sha1[n]);
                printf("\n");