aboutsummaryrefslogtreecommitdiff
path: root/builtin-blame.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-06-09 18:15:24 -0700
committerJunio C Hamano <gitster@pobox.com>2007-06-09 18:16:12 -0700
commitf291504563a5c96862e600247d233f91572a005f (patch)
tree7e08ac7c56e51ea94db1dd6525c26fe123537b07 /builtin-blame.c
parente58db03bbee4af96e60b6ac88b84c1c11b8b037e (diff)
downloadgit-f291504563a5c96862e600247d233f91572a005f.tar.gz
git-f291504563a5c96862e600247d233f91572a005f.tar.xz
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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/builtin-blame.c b/builtin-blame.c
index 35471fc26..590533321 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;
}
/*