summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e58db03)
raw | patch | inline | side by side (parent: e58db03)
author | Junio C Hamano <gitster@pobox.com> | |
Sun, 10 Jun 2007 01:15:24 +0000 (18:15 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 10 Jun 2007 01:16:12 +0000 (18:16 -0700) |
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-blame.c | patch | blob | history |
diff --git a/builtin-blame.c b/builtin-blame.c
index 35471fc2615992451c8c5b51a346fe171029b572..590533321a99bf4d00b872a839527f00616ed593 100644 (file)
--- a/builtin-blame.c
+++ b/builtin-blame.c
*/
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;
}
/*