Code

git-blame: do not indent with spaces.
authorJunio C Hamano <gitster@pobox.com>
Sun, 10 Jun 2007 01:15:24 +0000 (18:15 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sun, 10 Jun 2007 01:16:12 +0000 (18:16 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-blame.c

index 35471fc2615992451c8c5b51a346fe171029b572..590533321a99bf4d00b872a839527f00616ed593 100644 (file)
@@ -1744,11 +1744,11 @@ static int read_ancestry(const char *graft_file)
  */
 static int lineno_width(int lines)
 {
-        int i, width;
+       int i, width;
 
-        for (width = 1, i = 10; i <= lines + 1; width++)
-                i *= 10;
-        return width;
+       for (width = 1, i = 10; i <= lines + 1; width++)
+               i *= 10;
+       return width;
 }
 
 /*