diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-06-09 18:15:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-09 18:16:12 -0700 |
commit | f291504563a5c96862e600247d233f91572a005f (patch) | |
tree | 7e08ac7c56e51ea94db1dd6525c26fe123537b07 /builtin-blame.c | |
parent | e58db03bbee4af96e60b6ac88b84c1c11b8b037e (diff) | |
download | git-f291504563a5c96862e600247d233f91572a005f.tar.gz |
git-blame: do not indent with spaces.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-blame.c')
-rw-r--r-- | builtin-blame.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/builtin-blame.c b/builtin-blame.c index 35471fc261..590533321a 100644 --- a/builtin-blame.c +++ b/builtin-blame.c @@ -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; } /* |