From 415792edf51b2f87a58a942016a24a2e86a4218b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Scharfe?= Date: Sun, 7 Sep 2014 09:06:42 +0200 Subject: strbuf: use strbuf_addchars() for adding a char multiple times Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- graph.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'graph.c') diff --git a/graph.c b/graph.c index 640433166b..dfb99f6436 100644 --- a/graph.c +++ b/graph.c @@ -1145,7 +1145,7 @@ int graph_next_line(struct git_graph *graph, struct strbuf *sb) static void graph_padding_line(struct git_graph *graph, struct strbuf *sb) { - int i, j; + int i; if (graph->state != GRAPH_COMMIT) { graph_next_line(graph, sb); @@ -1169,8 +1169,7 @@ static void graph_padding_line(struct git_graph *graph, struct strbuf *sb) strbuf_addch(sb, ' '); else { int num_spaces = ((graph->num_parents - 2) * 2); - for (j = 0; j < num_spaces; j++) - strbuf_addch(sb, ' '); + strbuf_addchars(sb, ' ', num_spaces); } } else { strbuf_write_column(sb, col, '|'); -- cgit v1.2.3