Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-06-10 05:15:24 +0400
committerJunio C Hamano <gitster@pobox.com>2007-06-10 05:16:12 +0400
commitf291504563a5c96862e600247d233f91572a005f (patch)
tree7e08ac7c56e51ea94db1dd6525c26fe123537b07 /builtin-blame.c
parente58db03bbee4af96e60b6ac88b84c1c11b8b037e (diff)
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 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;
}
/*