| 1574 | } |
| 1575 | |
| 1576 | void graph_show_padding(struct git_graph *graph) |
| 1577 | { |
| 1578 | struct strbuf msgbuf = STRBUF_INIT; |
| 1579 | |
| 1580 | graph_show_line_prefix(default_diffopt); |
| 1581 | |
| 1582 | if (!graph) |
| 1583 | return; |
| 1584 | |
| 1585 | graph_padding_line(graph, &msgbuf); |
| 1586 | fwrite(msgbuf.buf, sizeof(char), msgbuf.len, graph->revs->diffopt.file); |
| 1587 | strbuf_release(&msgbuf); |
| 1588 | } |
| 1589 | |
| 1590 | int graph_show_remainder(struct git_graph *graph) |
| 1591 | { |
no test coverage detected