git-blame: do not indent with spaces.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2007-06-09 18:15:24 -07:00
parent e58db03bbe
commit f291504563

View 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;
}
/*