Remove the annoying "ok" printout from show-diff.
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 12 Apr 2005 09:01:12 +0000 (02:01 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 12 Apr 2005 09:01:12 +0000 (02:01 -0700)
It used to be useful before I wrote "show-files", so that
show-diff would also tell what the cached files were. Now
it's just annoying.

show-diff.c

index d9af29f..55b8576 100644 (file)
@@ -39,10 +39,8 @@ int main(int argc, char **argv)
                        continue;
                }
                changed = cache_match_stat(ce, &st);
-               if (!changed) {
-                       printf("%s: ok\n", ce->name);
+               if (!changed)
                        continue;
-               }
                printf("%.*s:  ", ce->namelen, ce->name);
                for (n = 0; n < 20; n++)
                        printf("%02x", ce->sha1[n]);