Skip to content

Commit

Permalink
git-blame: do not indent with spaces.
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
gitster committed Jun 10, 2007
1 parent e58db03 commit f291504
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions builtin-blame.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/*
Expand Down

0 comments on commit f291504

Please sign in to comment.